vite-plugin-travelm-agency
Version:
vite plugin to automatically run travelm-agency on build and watch
16 lines (15 loc) • 486 B
TypeScript
import { Plugin } from "vite";
interface Options {
translationDir: string;
defaultLanguage: string | undefined;
elmPath: string;
generatorMode: "inline" | "dynamic";
i18nArgFirst: boolean;
addContentHash: boolean;
jsonPath: string;
prefixFileIdentifier: boolean;
customHtmlModule: string;
customHtmlAttributesModule: string;
}
export declare function travelmAgencyPlugin(...options: [Partial<Options>, ...Partial<Options>[]]): Plugin;
export {};