UNPKG

@cdkx/web-application

Version:

Static web application hosting related constructs

18 lines (17 loc) 464 B
/// <amd-module name="@cdkx/web-application/handlers/base-handler" /> export declare abstract class BaseHandler { protected encodedResponse({ statusCode, body, headers, }: { statusCode: number; body: unknown; headers?: { [key: string]: string; }; }): { statusCode: number; headers: { 'Content-Type': string; }; body: string; isBase64Encoded: boolean; }; }