checki
Version:
Checki is an AI-driven CLI tool that generates Jest unit tests for React components, improving testing efficiency.
28 lines • 857 B
TypeScript
export declare const command: (desc: String, usage: usage[], signature?: any) => (target: Object, key: string, descriptor: PropertyDescriptor) => void;
export declare const cli: (constructor: Function) => void;
interface usage {
[index: number]: string | validation | validationError | validationPrompt;
}
interface validation {
required: string;
options?: any;
arg?: string | '_';
env?: string;
type?: 'text' | 'password' | 'list';
}
interface validationError {
error: string;
arg?: string | '_';
env?: string;
type?: 'text' | 'password' | 'list';
}
interface validationPrompt {
prompt: string;
default?: string;
encrypted_default?: string;
arg?: string | '_';
env?: string;
type?: 'text' | 'password' | 'list';
}
export {};
//# sourceMappingURL=decorators.d.ts.map