typia
Version:
Superfast runtime validators with only one line
14 lines (11 loc) • 329 B
text/typescript
import { IJsDocTagInfo } from "./IJsDocTagInfo";
import { IMetadataProperty } from "./IMetadataProperty";
export interface IMetadataObjectType {
name: string;
properties: IMetadataProperty[];
description?: undefined | string;
jsDocTags: IJsDocTagInfo[];
index: number;
recursive: boolean;
nullables: boolean[];
}