vue.d.mts 464 B

1234567891011
  1. import { CompilerOptions } from '@vue/compiler-dom';
  2. import { RenderFunction } from '@vue/runtime-dom';
  3. export * from '@vue/runtime-dom';
  4. export declare function compileToFunction(template: string | HTMLElement, options?: CompilerOptions): RenderFunction;
  5. export { compileToFunction as compile };
  6. // this is appended to the end of ../dist/vue.d.ts during build.
  7. // imports the global JSX namespace registration for compat.
  8. // TODO: remove in 3.4
  9. import '../jsx'