mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
14 lines
580 B
TypeScript
14 lines
580 B
TypeScript
// Type definitions for base64topdf 1.1
|
|
// Project: https://github.com/rpsankar001
|
|
// Definitions by: Lucas Riondel <https://github.com/lucasriondel>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export as namespace base64topdf;
|
|
|
|
export function base64Encode(file: string): void;
|
|
export function base64Decode(base64str: string, file: string): void;
|
|
export function rtfToText(rtfStr: string): string;
|
|
export function textToRtf(textStr: string): string;
|
|
export function strToBase64(str: string): string;
|
|
export function base64ToStr(base64Str: string): string;
|