@lcap/builder
Version:
lcap builder utils
31 lines (30 loc) • 1.12 kB
TypeScript
export declare const healthCheck: {
url: string;
method: "GET" | "OPTIONS" | "POST" | "PUT" | "DELETE";
handler: (req: import("../middleware").Request) => Promise<any>;
};
export declare const getProjectMeta: {
url: string;
method: "GET" | "OPTIONS" | "POST" | "PUT" | "DELETE";
handler: (req: import("../middleware").Request) => Promise<any>;
};
export declare const getProjectSchema: {
url: string;
method: "GET" | "OPTIONS" | "POST" | "PUT" | "DELETE";
handler: (req: import("../middleware").Request) => Promise<any>;
};
export declare const getProjectLcapConfig: {
url: string;
method: "GET" | "OPTIONS" | "POST" | "PUT" | "DELETE";
handler: (req: import("../middleware").Request) => Promise<any>;
};
export declare const publish: {
url: string;
method: "GET" | "OPTIONS" | "POST" | "PUT" | "DELETE";
handler: (req: import("../middleware").Request) => Promise<any>;
};
export declare const getPreviewURL: {
url: string;
method: "GET" | "OPTIONS" | "POST" | "PUT" | "DELETE";
handler: (req: import("../middleware").Request) => Promise<any>;
};