@bemedev/cli-test
Version:
A library for testing CLI libraries (INCEPTION !!)
7 lines • 397 B
TypeScript
export declare const undefiny: <T>(value?: T) => T | undefined;
export type NoInfer<T> = [T][T extends any ? 0 : any];
export type LowInfer<T> = T & NonNullable<unknown>;
export declare const buildEmptyArray: <T extends any[]>(...values: T) => T;
export declare const anify: <T>(value: unknown) => T;
export declare const arrayify: <T>(values?: T | T[]) => T[];
//# sourceMappingURL=utils.d.ts.map