@knime/scripting-editor 0.0.16 → 0.0.17
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.
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export type InputOutputModel = {
|
|
2
|
+
name: string;
|
|
3
|
+
codeAlias?: string;
|
|
4
|
+
subItems?: {
|
|
5
|
+
name: string;
|
|
6
|
+
type: string;
|
|
7
|
+
codeAlias?: string;
|
|
8
|
+
}[];
|
|
9
|
+
};
|
|
10
|
+
declare const _default: import("vue").DefineComponent<{
|
|
11
|
+
inputOutputItem: {
|
|
12
|
+
type: import("vue").PropType<InputOutputModel>;
|
|
13
|
+
required: true;
|
|
14
|
+
};
|
|
15
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
16
|
+
inputOutputItem: {
|
|
17
|
+
type: import("vue").PropType<InputOutputModel>;
|
|
18
|
+
required: true;
|
|
19
|
+
};
|
|
20
|
+
}>>, {}, {}>;
|
|
21
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -27,6 +27,7 @@ declare class ScriptingService {
|
|
|
27
27
|
connectToLanguageServer(): Promise<void>;
|
|
28
28
|
configureLanguageServer(settings: any): Promise<void>;
|
|
29
29
|
setScript(newScript: string): void;
|
|
30
|
+
pasteToEditor(textToPaste: string): void;
|
|
30
31
|
}
|
|
31
32
|
export type ScriptingServiceType = Pick<ScriptingService, keyof ScriptingService>;
|
|
32
33
|
declare const getScriptingService: (mock?: ScriptingServiceType) => ScriptingServiceType;
|
package/package.json
CHANGED