dtsgeneratorws
Version:
TypeScript d.ts file generator for JSON Schema file
16 lines (15 loc) • 444 B
TypeScript
/// <reference types="node" />
import * as url from 'url';
export default class SchemaId {
readonly inputId: string;
static empty: SchemaId;
readonly id: url.Url;
private readonly absoluteId;
constructor(inputId: string, parentIds?: string[]);
getAbsoluteId(): string;
isEmpty(): boolean;
isFetchable(): boolean;
getFileId(): string;
existsJsonPointerHash(): boolean;
getJsonPointerHash(): string;
}