/** * TypeScript Language Service Plugin for Gonia. * * Provides type inference and validation for directive templates. * Analyzes g-model, g-text, etc. in templates and infers $scope types. * * @packageDocumentation */ import type tslib from 'typescript/lib/tsserverlibrary'; declare function init(modules: { typescript: typeof tslib; }): { create: (info: tslib.server.PluginCreateInfo) => tslib.LanguageService; }; export = init;