Files
SAFEKISO/safekiso-server/node_modules/snyk/dist/lib/apps/prompts.d.ts
2026-04-07 14:50:23 +09:00

20 lines
418 B
TypeScript

import { validInput } from './input-validator';
/**
* Prompts for $snyk apps create command
*/
export declare const createAppPrompts: ({
name: string;
type: string;
message: string;
validate: typeof validInput;
choices?: undefined;
initial?: undefined;
} | {
name: string;
type: string;
message: string;
choices: string[];
initial: string;
validate?: undefined;
})[];