1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 export type ProgressFn = (id: string, working: boolean) => void;
6 export type ErrorFn = (id: string, error: any) => void;
8 export interface ApiActions {
9 progressFn: ProgressFn;