UNPKG

typia

Version:

Superfast runtime validators with only one line

10 lines (9 loc) 330 B
import { Atomic } from "../../typings/Atomic"; import { IJsDocTagInfo } from "./IJsDocTagInfo"; import { IMetadataTypeTag } from "./IMetadataTypeTag"; export interface IMetadataConstantValue<T extends Atomic.Type> { value: T; tags: IMetadataTypeTag[][]; description?: string | null; jsDocTags?: IJsDocTagInfo[]; }