@larksuiteoapi/core
Version:
larksuite open api core sdk
22 lines • 483 B
TypeScript
/// <reference types="node" />
import { ServerResponse } from "http";
export declare class Request {
params: {
[key: string]: any;
};
headers: {
[key: string]: any;
};
body: string | object;
constructor();
}
export declare class Response {
headers: {
[key: string]: any;
};
statusCode: number;
body: string | object;
constructor();
writeResponse(res: ServerResponse): void;
}
//# sourceMappingURL=model.d.ts.map