UNPKG

@metacall/faas

Version:

Reimplementation of MetaCall FaaS platform written in TypeScript.

7 lines (6 loc) 282 B
import { Resource } from '../app'; declare const runnerList: string[]; declare type Runner = typeof runnerList[number]; export declare const findRunners: (dir: string) => Promise<Runner[]>; export declare const installDependencies: (resource: Resource) => Promise<void>; export {};