mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-04 21:19:53 +08:00
6 lines
203 B
TypeScript
6 lines
203 B
TypeScript
import * as base64js from "base64-js";
|
|
|
|
base64js.byteLength(""); // $ExpectType number
|
|
base64js.toByteArray(""); // $ExpectType Uint8Array
|
|
base64js.fromByteArray(new Uint8Array(0)); // $ExpectTpe string
|