1
0
Fork 1
mirror of https://example.com synced 2024-11-23 03:06:39 +09:00
firefish/packages/firefish-js/markdown/firefish-js.api.apierror.md
2023-07-20 04:17:05 +09:00

430 B

Home > firefish-js > api > APIError

api.APIError type

Signature:

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