Procházet zdrojové kódy

Correct type annotations

base64 is not an option, neither is filename
Brent Vatne před 8 roky
rodič
revize
e94b88f888
1 změnil soubory, kde provedl 1 přidání a 2 odebrání
  1. 1
    2
      index.js

+ 1
- 2
index.js Zobrazit soubor

@@ -11,8 +11,7 @@ export function takeSnapshot(
11 11
     height ?: number;
12 12
     format ?: "png" | "jpg" | "jpeg" | "webm";
13 13
     quality ?: number;
14
-    base64 ?: bool;
15
-    filename ?: string;
14
+    result: ?: "file" | "base64" | "data-uri";
16 15
   }
17 16
 ): Promise<string> {
18 17
   if (typeof view !== "number") {