@swell/cli
Version:
Swell's command line interface/utility
13 lines (12 loc) • 583 B
TypeScript
export interface CreateFileParams {
extension?: string;
fileBody: Record<any, any> | string;
fileName: string;
}
export declare const toFileName: (value: string) => string;
export declare const toAppName: (value: string) => string;
export declare const toAppId: (value: string | undefined) => string;
export declare const toFunctionFileName: (value: string) => string;
export declare const toCollectionName: (value: string) => string;
export declare const toCollectionLabel: (value: string) => string;
export declare const toNotificationLabel: (value: string) => string;