@metacall/faas
Version:
Reimplementation of MetaCall FaaS platform written in TypeScript.
12 lines (11 loc) • 415 B
TypeScript
/// <reference types="qs" />
/// <reference types="express" />
export declare type DeployBody = {
suffix: string;
resourceType: 'Package' | 'Repository';
release: string;
env: string[];
plan: string;
version: string;
};
export declare const deploy: import("express").RequestHandler<import("express-serve-static-core").ParamsDictionary, any, any, import("qs").ParsedQs, Record<string, any>>;