mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
7 lines
205 B
TypeScript
7 lines
205 B
TypeScript
/// <reference path="base64-js.d.ts" />
|
|
|
|
import * as base64js from 'base64-js';
|
|
|
|
const bytes: Uint8Array = base64js.toByteArray('shemp');
|
|
const decoded: string = base64js.fromByteArray(new Uint8Array(0));
|