@lcap/builder
Version:
lcap builder utils
31 lines (30 loc) • 1.15 kB
TypeScript
export declare const getComponentList: {
url: string;
method: "GET" | "OPTIONS" | "POST" | "PUT" | "DELETE";
handler: (req: import("../middleware").Request) => Promise<any>;
};
export declare const getComponentDetail: {
url: string;
method: "GET" | "OPTIONS" | "POST" | "PUT" | "DELETE";
handler: (req: import("../middleware").Request) => Promise<any>;
};
export declare const getComponentFileContent: {
url: string;
method: "GET" | "OPTIONS" | "POST" | "PUT" | "DELETE";
handler: (req: import("../middleware").Request) => Promise<any>;
};
export declare const createComponentFromSchema: {
url: string;
method: "GET" | "OPTIONS" | "POST" | "PUT" | "DELETE";
handler: (req: import("../middleware").Request) => Promise<any>;
};
export declare const removeComponent: {
url: string;
method: "GET" | "OPTIONS" | "POST" | "PUT" | "DELETE";
handler: (req: import("../middleware").Request) => Promise<any>;
};
export declare const updateComponent: {
url: string;
method: "GET" | "OPTIONS" | "POST" | "PUT" | "DELETE";
handler: (req: import("../middleware").Request) => Promise<any>;
};