소스 검색

transloadit: add auth.expires type, fixes #2454 (#2457)

Renée Kooi 4 년 전
부모
커밋
3cd5791f0d
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 1
      packages/@uppy/transloadit/types/index.d.ts

+ 4 - 1
packages/@uppy/transloadit/types/index.d.ts

@@ -3,7 +3,10 @@ import TransloaditLocale = require('./generatedLocale')
 
 declare module Transloadit {
   interface AssemblyParameters {
-    auth: { key: string }
+    auth: {
+      key: string,
+      expires?: string
+    }
     template_id?: string
     steps?: { [step: string]: object }
     notify_url?: string