UNPKG

cspell-lib

Version:

A library of useful functions used across various cspell tools.

13 lines 345 B
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