You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
521 B
TypeScript
7 lines
521 B
TypeScript
import { type LanguagePlugin } from '@volar/language-core';
|
|
import type * as ts from 'typescript';
|
|
import type { VueCompilerOptions } from './types';
|
|
import { VueVirtualCode } from './virtualFile/vueFile';
|
|
export declare function createVueLanguagePlugin<T>(ts: typeof import('typescript'), compilerOptions: ts.CompilerOptions, vueCompilerOptions: VueCompilerOptions, asFileName: (scriptId: T) => string): LanguagePlugin<T, VueVirtualCode>;
|
|
export declare function getAllExtensions(options: VueCompilerOptions): string[];
|