UNPKG

542 BTypeScriptView Raw
1export declare class CodegenType {
2 static ordinal: () => CodegenType[];
3 type: any;
4 constructor(type: any);
5 toString(): any;
6}
7export declare const CLIENT: CodegenType;
8export declare const SERVER: CodegenType;
9export declare const DOCUMENTATION: CodegenType;
10export declare const OTHER: CodegenType;
11export declare function forValue(value: any): string | undefined;
12declare const _default: {
13 CLIENT: CodegenType;
14 DOCUMENTATION: CodegenType;
15 OTHER: CodegenType;
16 SERVER: CodegenType;
17};
18export default _default;