telefunc
Version:
Remote functions. Instead of API.
14 lines (13 loc) • 440 B
TypeScript
export { findTelefunction };
import type { TelefuncFiles, Telefunction } from '../types.js';
declare function findTelefunction(runContext: {
telefuncFilePath: string;
telefuncFilesLoaded: TelefuncFiles;
telefuncFilesAll: string[];
telefunctionName: string;
logInvalidRequests: boolean;
appRootDir: null | string;
serverConfig: {
disableNamingConvention: boolean;
};
}): Promise<null | Telefunction>;