mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
17 lines
499 B
TypeScript
17 lines
499 B
TypeScript
// Type definitions for jQuery Plugin - base64 codec
|
|
// Project: https://github.com/yatt/jquery.base64/
|
|
// Definitions by: Shinya Mochizuki <https://github.com/enrapt-mochizuki/>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.3
|
|
|
|
/// <reference types="jquery" />
|
|
|
|
interface JQueryBase64Static {
|
|
encode(data: string, isUTF8?: boolean): string;
|
|
decode(data: string, isUTF8?: boolean): string;
|
|
}
|
|
|
|
interface JQueryStatic {
|
|
base64: JQueryBase64Static;
|
|
}
|