ugcinc 4.1.65 → 4.1.66
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -253,6 +253,7 @@ export declare const nodeDefinitions: {
|
|
|
253
253
|
}, import("./output").OutputNodeInputs, import("./output").OutputNodeOutputs, false> & {
|
|
254
254
|
__TInputs: import("./output").OutputNodeInputs;
|
|
255
255
|
__TOutputs: import("./output").OutputNodeOutputs;
|
|
256
|
+
__TExecutorOutput: import("./output").OutputNodeInputs;
|
|
256
257
|
};
|
|
257
258
|
readonly random: NodeDefinition<"generator", {
|
|
258
259
|
mode: import("./random").RandomNodeMode;
|
|
@@ -13,6 +13,7 @@ declare const definition: import("./types").NodeDefinition<"terminal", {
|
|
|
13
13
|
declare const _default: typeof definition & {
|
|
14
14
|
__TInputs: OutputNodeInputs;
|
|
15
15
|
__TOutputs: OutputNodeOutputs;
|
|
16
|
+
__TExecutorOutput: OutputNodeInputs;
|
|
16
17
|
};
|
|
17
18
|
export default _default;
|
|
18
19
|
export type OutputNodeConfig = typeof definition.defaults;
|