UNPKG

279 BTypeScriptView Raw
1import { Type } from './abstract';
2export declare class StringLiteralType extends Type {
3 value: string;
4 readonly type: string;
5 constructor(value: string);
6 clone(): Type;
7 equals(type: StringLiteralType): boolean;
8 toObject(): any;
9 toString(): string;
10}