Current section

Files

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

priv/bun/node_modules/cspell-lib/dist/lib/Document/Document.d.ts

import type { Uri } from '../util/IUri.js';
export interface Document {
uri: UriString;
text?: string;
languageId?: string;
locale?: string;
}
export type UriString = string;
export type UriOrString = UriString | Uri;
export interface DocumentWithText extends Document {
text: string;
}
//# sourceMappingURL=Document.d.ts.map