/** * @author Siglud */ export declare enum HttpStatusCode { OK = 200, CREATED = 201, ACCEPTED = 202, BAD_REQUEST = 400, UNAUTHORIZED = 401, FORBIDDEN = 403, NOTFOUND = 404, TOOMANYREQS = 429, INTERNAL_SERVER_ERROR = 500 } export declare class HttpMethod { static readonly POST = "POST"; static readonly GET = "GET"; static readonly DELETE = "DELETE"; static readonly PATCH = "PATCH"; } export declare class TelemetryConstant { static readonly DEPLOY_COMPONENT_NAME = "deploy"; static readonly PROVISION_COMPONENT_NAME = "provision"; static readonly SCRIPT_COMPONENT = "script"; static readonly DEPLOY_TO_SWA_COMPONENT = "deploy_to_swa"; } //# sourceMappingURL=commonConstant.d.ts.map