UNPKG

@russ-b/nestjs-common-tools

Version:
18 lines (17 loc) 408 B
export interface IStruct { fields?: Record<string, IValue>; } interface IListValue { values?: IValue[]; } export interface IValue { kind?: string; nullValue?: 0; numberValue?: number; stringValue?: string; boolValue?: boolean; structValue?: IStruct; listValue?: IListValue; } export type StructType = null | undefined | string | number | boolean | object | []; export {};