UNPKG

@scaleway/sdk-client

Version:
11 lines (10 loc) 348 B
import type { JSONObject } from '../../helpers/json.js'; import type { ScalewayError } from './scw-error.js'; /** * Interface with static method that initialize {@link ScalewayError} from JSON. * * @internal */ export interface ScalewayErrorFromJSONInitializer { fromJSON(status: number, obj: Readonly<JSONObject>): ScalewayError | null; }