mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 19:07:08 +00:00
10 lines
372 B
TypeScript
10 lines
372 B
TypeScript
|
|
// Type definitions for uuencode 0.0
|
||
|
|
// Project: https://github.com/zacbarton/node-uuencode#readme
|
||
|
|
// Definitions by: synaestheory <https://github.com/synaesthoery>
|
||
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||
|
|
|
||
|
|
/// <reference types="node"/>
|
||
|
|
|
||
|
|
export function decode(str: string | Buffer): string;
|
||
|
|
export function encode(str: string | Buffer): string;
|