import { doChange, doChangeWatchedFiles, doClose, doOpen, get } from "../utils/text-documents"; export declare const documents: { get: typeof get; doChange: typeof doChange; doOpen: typeof doOpen; doClose: typeof doClose; doChangeWatchedFiles: typeof doChangeWatchedFiles; }; import type { Plugin } from "./types"; /** * Facade to all embedded plugins, eg css, typescript and our own. */ declare const service: Plugin; export { service as default };