mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
10 lines
315 B
TypeScript
10 lines
315 B
TypeScript
// Type definitions for btoa-lite 1.0
|
|
// Project: https://github.com/hughsk/btoa-lite
|
|
// Definitions by: Gregor Martynus <https://github.com/gr2m>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
type EncodedData = string;
|
|
declare function btoa(decodedData: string): EncodedData;
|
|
|
|
export = btoa;
|