tangled
alpha
login
or
join now
woof.monster
/
cobalt-raycast
0
fork
atom
download media from various services using cobalt.tools via raycast
raycast
raycast-extension
0
fork
atom
overview
issues
pulls
pipelines
organize imports
woof.monster
1 month ago
744dbaad
f7ca6c87
+7
-7
1 changed file
expand all
collapse all
unified
split
src
download-media.tsx
+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,
0
0
13
} from "@raycast/api";
14
import fs from "node:fs";
0
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,
0
7
Icon,
0
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";
0
18
19
type Values = {
20
url: string;