@curvenote/cli
Version:
CLI Client library for Curvenote
60 lines • 1.22 kB
TypeScript
declare function title(opts: {
title: string;
}): {
name: string;
type: string;
message: string;
default: string;
};
declare function content(opts: {
folderIsEmpty: boolean;
}): {
name: string;
type: string;
message: string;
choices: ({
name: string;
value: string;
disabled?: undefined;
} | {
name: string;
value: string;
disabled: boolean;
})[];
};
declare function projectLink(opts?: {
projectLink?: string;
}): {
name: string;
message: string;
type: string;
default: string;
};
declare function projectPath(path?: string): {
name: string;
message: string;
type: string;
default: boolean;
};
declare function start(): {
name: string;
message: string;
type: string;
default: boolean;
};
declare function pull(): {
name: string;
message: string;
type: string;
default: boolean;
};
declare const _default: {
title: typeof title;
content: typeof content;
projectLink: typeof projectLink;
projectPath: typeof projectPath;
start: typeof start;
pull: typeof pull;
};
export default _default;
//# sourceMappingURL=questions.d.ts.map