ts-lit-plugin
Version:
Typescript plugin that adds type checking and code completion to lit-html
11 lines • 340 B
TypeScript
import * as ts from "typescript";
import * as tsServer from "typescript/lib/tsserverlibrary";
/**
* Export a function for the ts-service to initialize our plugin.
* @param typescript
*/
declare function init({ typescript }: {
typescript: typeof ts;
}): tsServer.server.PluginModule;
export = init;
//# sourceMappingURL=index.d.ts.map