telefunc
Version:
Remote functions. Instead of API.
9 lines (8 loc) • 399 B
TypeScript
export { loadTelefuncFilesUsingVite };
declare function loadTelefuncFilesUsingVite(runContext: {
telefuncFilePath: string;
}, failOnFailure: boolean): Promise<{
telefuncFilesLoaded: Record<string, Record<string, unknown>>;
viteProvider: "Vite with `import()`" | "Vite with `ssrLoadModule()`" | "Vite with `@brillout/vite-plugin-server-entry`";
telefuncFilesAll: string[];
} | null>;