@amityco/ts-sdk
Version:
Amity Social Cloud Typescript SDK
13 lines • 503 B
TypeScript
import { ASCApiError } from '~/core/errors';
/**
* Thrown by `getForYouFeed` when the network has the For You feature
* disabled. Mapped from HTTP 404 NOT_FOUND. Distinct from a generic
* not-found so consumers can hide the For You tab without retrying.
*
* @category Errors
*/
export declare class AmityForYouFeedDisabledError extends ASCApiError {
readonly type = "AmityForYouFeedDisabledError";
constructor(message?: string);
}
//# sourceMappingURL=AmityForYouFeedDisabledError.d.ts.map