@book000/pixivts
Version:
pixiv Unofficial API Library for TypeScript
29 lines • 552 B
TypeScript
interface Error {
/**
* ユーザ向けのエラーメッセージ
*/
user_message: string;
/**
* エラーメッセージ
*/
message: string;
/**
* エラーの原因
*/
reason: string;
/**
* ユーザ向けのエラーメッセージ詳細
*/
user_message_details?: unknown;
}
/**
* pixiv が返すエラーレスポンス
*/
export interface PixivApiError {
/**
* エラーの詳細
*/
error: Error;
}
export {};
//# sourceMappingURL=error-response.d.ts.map