vue-jsx-vapor
Version:
Vapor Mode of Vue JSX
21 lines (20 loc) • 533 B
text/typescript
import { CompilerOptions } from "@vue-jsx-vapor/compiler-rs";
import { Options } from "@vue-jsx-vapor/macros";
import { FilterPattern } from "unplugin";
//#region src/options.d.ts
interface Options$1 {
// define your plugin options here
include?: FilterPattern;
exclude?: FilterPattern;
interop?: boolean;
compiler?: CompilerOptions;
sourceMap?: boolean;
/** @default true */
ref?: {
alias?: string[];
} | boolean;
/** @default false */
macros?: Options | boolean;
}
//#endregion
export { Options$1 as t };