Remove types from VCS
This commit is contained in:
Vendored
-2
@@ -1,2 +0,0 @@
|
||||
export declare function toAscii(input: string): Uint8Array;
|
||||
export declare function fromAscii(data: Uint8Array): string;
|
||||
Vendored
-2
@@ -1,2 +0,0 @@
|
||||
export declare function toBase64(data: Uint8Array): string;
|
||||
export declare function fromBase64(base64String: string): Uint8Array;
|
||||
Vendored
-10
@@ -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;
|
||||
};
|
||||
}
|
||||
Vendored
-2
@@ -1,2 +0,0 @@
|
||||
export declare function toHex(data: Uint8Array): string;
|
||||
export declare function fromHex(hexstring: string): Uint8Array;
|
||||
Vendored
-6
@@ -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";
|
||||
Vendored
-3
@@ -1,3 +0,0 @@
|
||||
import { ReadonlyDate } from "readonly-date";
|
||||
export declare function fromRfc3339(str: string): ReadonlyDate;
|
||||
export declare function toRfc3339(date: Date | ReadonlyDate): string;
|
||||
Vendored
-2
@@ -1,2 +0,0 @@
|
||||
export declare function toUtf8(str: string): Uint8Array;
|
||||
export declare function fromUtf8(data: Uint8Array): string;
|
||||
Reference in New Issue
Block a user