UNPKG

478 BTypeScriptView Raw
1/// <reference types="node" />
2import * as url from 'url';
3export default class SchemaId {
4 readonly inputId: string;
5 private readonly absoluteId;
6 readonly id: url.Url;
7 static readonly empty: SchemaId;
8 constructor(inputId: string, parentIds?: string[]);
9 getAbsoluteId(): string;
10 isEmpty(): boolean;
11 isFetchable(): boolean;
12 getFileId(): string;
13 existsJsonPointerHash(): boolean;
14 getJsonPointerHash(): string;
15 toNames(): string[];
16}