typia
Version:
Superfast runtime validators with only one line
12 lines (9 loc) • 324 B
text/typescript
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[];
}