telefunc
Version:
Remote functions. Instead of API.
11 lines (10 loc) • 338 B
TypeScript
export { loadTelefuncFiles };
import type { TelefuncFiles } from '../types.js';
declare function loadTelefuncFiles(runContext: {
appRootDir: string | null;
telefuncFilesManuallyProvidedByUser: string[] | null;
telefuncFilePath: string;
}): Promise<{
telefuncFilesLoaded: TelefuncFiles;
telefuncFilesAll: string[];
}>;