eas-cli
Version:
EAS command line tool
16 lines (15 loc) • 476 B
TypeScript
import { JSONValue } from '@expo/json-file';
export declare class ApiV2Error extends Error {
readonly name = "ApiV2Error";
readonly expoApiV2ErrorCode: string;
readonly expoApiV2ErrorDetails?: JSONValue;
readonly expoApiV2ErrorServerStack?: string;
readonly expoApiV2ErrorMetadata?: object;
constructor(response: {
message: string;
code: string;
stack?: string;
details?: JSONValue;
metadata?: object;
});
}