mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
6 lines
204 B
TypeScript
6 lines
204 B
TypeScript
import * as base64js from "base64-js";
|
|
|
|
base64js.byteLength(""); // $ExpectType number
|
|
base64js.toByteArray(""); // $ExpectType Uint8Array
|
|
base64js.fromByteArray(new Uint8Array(0)); // $ExpectType string
|