Type alias PushResult

PushResult: {
    ok: boolean;
    refs: {
        [key: string]: {
            ok: boolean;
            error?: string;
        };
    };
    error?: string;
    headers?: HttpHeaders;
}

Type declaration

  • ok: boolean
  • refs: {
        [key: string]: {
            ok: boolean;
            error?: string;
        };
    }
    • [key: string]: {
          ok: boolean;
          error?: string;
      }
      • ok: boolean
      • Optional error?: string
  • Optional error?: string
  • Optional headers?: HttpHeaders

Generated using TypeDoc