UNPKG

@bitjson/typedoc

Version:

Create api documentation for TypeScript projects.

11 lines (10 loc) 279 B
import { Type } from './abstract'; export declare class StringLiteralType extends Type { value: string; readonly type: string; constructor(value: string); clone(): Type; equals(type: StringLiteralType): boolean; toObject(): any; toString(): string; }