download media from various services using cobalt.tools via raycast
raycast raycast-extension

organize imports

+7 -7
+7 -7
src/download-media.tsx
··· 1 import { 2 - Form, 3 ActionPanel, 4 - Action, 5 - showToast, 6 getPreferenceValues, 7 - Toast, 8 Icon, 9 - showHUD, 10 PopToRootType, 11 - closeMainWindow, 12 showInFinder, 13 } from "@raycast/api"; 14 import fs from "node:fs"; 15 import os from "os"; 16 import { Readable } from "stream"; 17 - import { pipeline } from "node:stream/promises"; 18 19 type Values = { 20 url: string;
··· 1 import { 2 + Action, 3 ActionPanel, 4 + closeMainWindow, 5 + Form, 6 getPreferenceValues, 7 Icon, 8 PopToRootType, 9 + showHUD, 10 showInFinder, 11 + showToast, 12 + Toast, 13 } from "@raycast/api"; 14 import fs from "node:fs"; 15 + import { pipeline } from "node:stream/promises"; 16 import os from "os"; 17 import { Readable } from "stream"; 18 19 type Values = { 20 url: string;