@intlayer/config
Version:
Retrieve Intlayer configurations and manage environment variables for both server-side and client-side environments.
10 lines (9 loc) • 532 B
TypeScript
import { BuildOptions, Loader, Plugin } from "esbuild";
//#region src/loadExternalFile/bundleFile.d.ts
type ESBuildPlugin = Plugin;
declare const getLoader: (extension: string) => Loader;
declare const bundleFileSync: (code: string, filePath: string, options?: BuildOptions) => string | undefined;
declare const bundleFile: (code: string, filePath: string, options?: BuildOptions) => Promise<string | undefined>;
//#endregion
export { ESBuildPlugin, bundleFile, bundleFileSync, getLoader };
//# sourceMappingURL=bundleFile.d.ts.map