Remove types from VCS

This commit is contained in:
willclarktech
2021-02-09 14:57:24 +00:00
parent 31cdd91991
commit 1c6f3ee9a5
151 changed files with 0 additions and 11856 deletions
-2
View File
@@ -1,2 +0,0 @@
export declare function toAscii(input: string): Uint8Array;
export declare function fromAscii(data: Uint8Array): string;
-2
View File
@@ -1,2 +0,0 @@
export declare function toBase64(data: Uint8Array): string;
export declare function fromBase64(base64String: string): Uint8Array;
-10
View File
@@ -1,10 +0,0 @@
export declare class Bech32 {
static encode(prefix: string, data: Uint8Array, limit?: number): string;
static decode(
address: string,
limit?: number,
): {
readonly prefix: string;
readonly data: Uint8Array;
};
}
-2
View File
@@ -1,2 +0,0 @@
export declare function toHex(data: Uint8Array): string;
export declare function fromHex(hexstring: string): Uint8Array;
-6
View File
@@ -1,6 +0,0 @@
export { fromAscii, toAscii } from "./ascii";
export { fromBase64, toBase64 } from "./base64";
export { Bech32 } from "./bech32";
export { fromHex, toHex } from "./hex";
export { fromRfc3339, toRfc3339 } from "./rfc3339";
export { fromUtf8, toUtf8 } from "./utf8";
-3
View File
@@ -1,3 +0,0 @@
import { ReadonlyDate } from "readonly-date";
export declare function fromRfc3339(str: string): ReadonlyDate;
export declare function toRfc3339(date: Date | ReadonlyDate): string;
-2
View File
@@ -1,2 +0,0 @@
export declare function toUtf8(str: string): Uint8Array;
export declare function fromUtf8(data: Uint8Array): string;