cspell-lib
Version:
A library of useful functions used across various cspell tools.
13 lines • 347 B
TypeScript
export interface Uri {
readonly scheme: string;
readonly path: string;
readonly authority?: string;
readonly fragment?: string;
readonly query?: string;
}
export interface UriInstance extends Uri {
toString(): string;
toJSON(): unknown;
}
export type DocumentUri = Uri | URL | string;
//# sourceMappingURL=IUri.d.ts.map