Skip to content

Commit

Permalink
fix typs
Browse files Browse the repository at this point in the history
  • Loading branch information
AWare committed Oct 30, 2019
1 parent 4c79332 commit 00b1d2f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions projects/archiver/src/tasks/upload/index.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import { Handler } from 'aws-lambda'
import { attempt, hasFailed } from '../../../../backend/utils/try'
import { issuePath } from '../../../common'
import { ImageTaskOutput } from '../front'
import { IssueTaskOutput } from '../issue'
import { upload, ONE_WEEK } from '../../utils/s3'
import { handleAndNotify } from '../../services/task-handler'
import { ONE_WEEK, upload } from '../../utils/s3'
import { IssueTaskOutput } from '../issue'

type UploadTaskInput = ImageTaskOutput
type UploadTaskInput = IssueTaskOutput
export type UploadTaskOutput = Pick<
IssueTaskOutput,
'issuePublication' | 'message' | 'issue'
Expand Down

0 comments on commit 00b1d2f

Please sign in to comment.