import RESTAPIError, { IFUNNY_ERRORS } from "./error_base"; export default interface RESTAPIErrorWrongParams extends RESTAPIError { error: IFUNNY_ERRORS.WRONG_PARAMS; error_description: RESTAPIWrongParamsMessage; status: 400; } export declare enum WRONG_PARAMS_MESSAGE { SUBSCRIBE = "You can not subscribe to yourself, it can cause dizziness" } export declare type RESTAPIWrongParamsMessage = `${WRONG_PARAMS_MESSAGE}`; //# sourceMappingURL=wrong_params.d.ts.map