import type { DocumentUri, Range } from "vscode-languageserver-protocol"; import { NotificationType } from "vscode-languageserver-protocol"; /** * Namespace for the publish document reveal notification */ export declare namespace PublishDocumentRevealNotification { /** * Notification type for publish document reveal */ const type: NotificationType; } /** * The parameters send in a publish document reveal notification */ export interface PublishDocumentRevealParams { /** * The document uri. */ uri: DocumentUri; /** * An array of document reveals for the given text document. */ range: Range; } //# sourceMappingURL=publishDocumentRevealNotification.d.ts.map