capnpc-ts
Version:
Cap'n Proto schema compiler for TypeScript.
9 lines (8 loc) • 423 B
TypeScript
import { Int64, Uint64 } from "capnp-ts/src/types";
export declare function c2s(s: string): string;
export declare function c2t(s: string): string;
export declare function d2h(d: string): string;
export declare function decToHexBytes(d: string): string[];
export declare function decToInt64(d: string): Int64;
export declare function decToUint64(d: string): Uint64;
export declare function splitCamel(s: string): string[];