mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-05 02:08:08 +09:00
434 B
434 B
Home > iceshrimp-js > api > APIError
api.APIError type
Signature:
export declare type APIError = {
id: string;
code: string;
message: string;
kind: "client" | "server";
info: Record<string, any>;
};