UNPKG

@scaleway/sdk-client

Version:
10 lines (9 loc) 410 B
import type { JSONObject } from '../../../helpers/json.js'; import { ScalewayError } from '../scw-error.js'; import { ResourceNotFoundError } from '../standard/resource-not-found-error.js'; /** * UnknownResource error is only returned by the instance API. * * @public */ export declare const mapUnknownResourceFromJSON: (status: number, obj: Readonly<JSONObject>) => ResourceNotFoundError | ScalewayError;