mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-04 21:19:53 +08: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
|