@dialog-db/query
Version:
Datalog query engine inspired by Datomic
12 lines • 452 B
TypeScript
export function is(bytes: unknown): bytes is Uint8Array;
export function equal(self: Uint8Array, other: Uint8Array): boolean;
export function toJSON(bytes: Uint8Array): JSON;
export function fromJSON(json: JSON): Uint8Array;
export function toString(bytes: Uint8Array): string;
export function compare(self: Uint8Array, other: Uint8Array): 0 | -1 | 1;
export type JSON = {
"/": {
bytes: string;
};
};
//# sourceMappingURL=bytes.d.ts.map