Current section

Files

Jump to
spellweaver priv bun node_modules cspell-lib dist lib util IUri.d.ts
Raw

priv/bun/node_modules/cspell-lib/dist/lib/util/IUri.d.ts

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