@russ-b/nestjs-common-tools
Version:
NestJS utility tools
17 lines (16 loc) • 326 B
TypeScript
export interface IFieldDescriptor {
name: string;
extendee: string;
number: number;
label: string;
type: string;
typeName: string;
defaultValue: string;
options: any;
oneofIndex: number;
jsonName: string;
}
export interface IFoundField {
name: string;
fields?: IFoundField[];
}