@frontitude/cli
Version:
The Frontitude CLI enables product teams to integrate their code with Frontitude (frontitude.com), thus creating a single source of truth for their product copy, from design to development.
10 lines (9 loc) • 459 B
TypeScript
export declare const getConnectedSourceDisplayName: (name: string, url: string) => string;
export declare const confirm: (message: string, { name }?: {
name?: string | undefined;
}) => Promise<boolean>;
export declare const input: (message: string, { name, defaultValue, validateInputFn }?: {
name?: string | undefined;
defaultValue?: string | number | boolean | undefined;
validateInputFn?: Function | undefined;
}) => Promise<any>;