/** * Response details for the Async App Validation request submitted. */ export interface AsyncAppValidationResponse { status: AsyncAppValidationStatus; appValidationId: string; } /** * Async app validation status */ export declare enum AsyncAppValidationStatus { Created = "Created", InProgress = "InProgress", Completed = "Completed", Aborted = "Aborted" } //# sourceMappingURL=AsyncAppValidationResponse.d.ts.map