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