Files
clawbot/skills/remotion-prompt-video/node_modules/@remotion/cli/dist/truthy.d.ts

4 lines
150 B
TypeScript

type Truthy<T> = T extends false | '' | 0 | null | undefined ? never : T;
export declare function truthy<T>(value: T): value is Truthy<T>;
export {};