import { ASResponse } from "./ASResponse"; import { ISerializable } from "../../../serialize/BaseSerializer"; export default class ASErrorResponse extends ASResponse implements ISerializable { private _ok; private _error; private _errorCode; constructor(error: string, errorCode?: number); serialize(): { ok: boolean; error: string; errorCode: number; }; }