Skip to content

Commit

Permalink
feat: getStateForUploadById
Browse files Browse the repository at this point in the history
  • Loading branch information
Hanno Gödecke committed Mar 5, 2021
1 parent 36ab421 commit c222eeb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ type BetterTusClientType = {
headers?: Record<string, string>
): Promise<void>;
resumeAll(): Promise<void>;
getStateForUploadById(
id: string
): Promise<'ENQUEUED' | 'RUNNING' | 'SUCCEEDED' | 'CANCELLED'>;
eventEmitter: Omit<EventEmitter, 'addListener'> & {
addListener(
name: BetterTusClientEventNames,
Expand Down

0 comments on commit c222eeb

Please sign in to comment.