mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
9 lines
391 B
TypeScript
9 lines
391 B
TypeScript
import * as base64topdf from 'base64topdf';
|
|
|
|
base64topdf.base64Encode('index.ts'); // $ExpectType void
|
|
base64topdf.base64Decode('decodethis', 'test.b64'); // $ExpectType void
|
|
base64topdf.rtfToText('rtf'); // $ExpectType string
|
|
base64topdf.textToRtf('text'); // $ExpectType string
|
|
base64topdf.strToBase64('str'); // $ExpectType string
|
|
base64topdf.base64ToStr('base64'); // $ExpectType string
|