s3-query-json
Version:
Query (ND)JSON files on S3
4 lines (3 loc) • 315 B
TypeScript
export declare function assertIsString(input: any, errorMessage: string): asserts input is string;
export declare function optionalIn<T>(input: any | any[], collection: T[], errorMessage: string): asserts input is T;
export declare function assert(statement: boolean, errorMessage: any): asserts statement is true;