@grpc.ts/cli
Version:
CLI package for @grpc.ts to generate typing for TypeScript
13 lines (12 loc) • 517 B
TypeScript
export declare function capitalize(data: string): string;
interface ICamelizeOptionsProps {
uppercase?: boolean;
}
export declare function camelize(str: string, opts?: ICamelizeOptionsProps): string;
export declare function toSnakeCase(str: string): string;
export declare function lowerFirstChar(str: string): string;
interface ICombineOptionsProps {
joinWith: string;
}
export declare function combine(opts?: ICombineOptionsProps | string | undefined, ...params: (string | undefined)[]): string;
export {};