UNPKG

type-compiler

Version:

A TypeScript compiler plugin for enhanced runtime type checking and analysis with Zod validation

11 lines (10 loc) 265 B
import * as ts from 'typescript/lib/tsserverlibrary'; /** * Create the TypeScript Language Service plugin */ declare function init(modules: { typescript: typeof ts; }): { create: (info: ts.server.PluginCreateInfo) => ts.LanguageService; }; export = init;