// Copyright © Aptos // SPDX-License-Identifier: Apache-2.0 export interface BackendSuccessResponse { data: T; status: 200; success: true; } export interface BackendErrorResponse { message: string; status: 400 | 401 | 500; success: false; } export type BackendResponse = BackendSuccessResponse; //# sourceMappingURL=response.d.ts.map