DefinitelyTyped/types/b64-lite/b64-lite-tests.ts
2019-04-15 22:27:40 +08:00

8 lines
209 B
TypeScript

import * as b64lite from "b64-lite";
b64lite.btoa(""); // $ExpectType string
b64lite.toBase64(""); // $ExpectType string
b64lite.atob(""); // $ExpectType string
b64lite.fromBase64(""); // $ExpectType string