blob: 3bd8258a98303c87480f9780f113da7ae4ded728 [file] [log] [blame]
/// <reference types="node" />
import 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;
}