valkyrie-docs/docs/api/valkyrie-js.api.apierror.md
2023-08-02 00:58:34 +12:00

401 B

Home > valkyrie-js > api > APIError

api.APIError type

Signature:

export declare type APIError = {
	id: string;
	code: string;
	message: string;
	kind: "client" | "server";
	info: Record<string, any>;
};