You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* This node provides a blob widget that allows users to upload any file type and outputs them as binary data.
9
+
*/
10
+
exportclassBlobNodeextendsExecutableNode{
11
+
publicstaticreadonlynodeType: NodeType={
12
+
id: "blob",
13
+
name: "Blob",
14
+
type: "blob",
15
+
description: "A blob widget for uploading any file type",
16
+
tags: ["Widget","Blob","Load","File"],
17
+
icon: "file",
18
+
documentation:
19
+
"This node provides a blob widget for uploading any file type and outputs them as blob references. It can accept any MIME type and connect to any specific blob type (image, audio, document, etc.).",
20
+
inputs: [
21
+
{
22
+
name: "value",
23
+
type: "blob",
24
+
description: "Current file as a blob reference",
25
+
hidden: true,
26
+
},
27
+
],
28
+
outputs: [
29
+
{
30
+
name: "blob",
31
+
type: "blob",
32
+
description: "The uploaded file as a blob reference",
0 commit comments