venom-generator
Version:
In the way of code generation, complete the storage model->computation model (business API) transformation to achieve the goal of design and implementation
23 lines (22 loc) • 843 B
TypeScript
export declare function improtAgrs(category: string, args: string[]): string;
export declare function authAud(str: string, args: string): AudAuth;
export declare function trim(str: string, char: string, type: string): string;
export declare function basicDataType(data: string): boolean;
export declare function initialCase(str: string): string;
export declare function initialUpperCase(str: string): string;
export declare function underlineToCamel(str: string): string;
export declare function delRepetitionArr(arr: string[]): string[];
export interface ApiData {
apiData: string;
againCommon: boolean;
}
export interface AudAuth {
param: string;
external: boolean;
}
export interface ServersgSchema {
importServer: String;
serversgSchema: String;
resolvers: String;
typeDefs: String;
}