@vyr/builtin 0.0.21 → 0.0.22
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.
|
@@ -202,11 +202,10 @@ interface ZhCNLanguageProvider extends LanguageProvider {
|
|
|
202
202
|
'preset.scheduler.invoke': string;
|
|
203
203
|
'preset.scheduler.invoke.target': string;
|
|
204
204
|
'preset.scheduler.invoke.interaction': string;
|
|
205
|
-
'preset.dataset.compile': string;
|
|
206
205
|
'global.action.redo.label': string;
|
|
207
206
|
'global.action.undo.label': string;
|
|
208
|
-
'header.action.exportProject.label': string;
|
|
209
207
|
'header.action.exportScene.label': string;
|
|
208
|
+
'header.action.importExample.label': string;
|
|
210
209
|
'header.action.previewScene.label': string;
|
|
211
210
|
'header.action.realTimePreview.label': string;
|
|
212
211
|
'header.action.myExample.label': string;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Action } from '@vyr/runtime';
|
|
2
|
+
declare class ImportExampleAction extends Action {
|
|
3
|
+
static id: string;
|
|
4
|
+
label: string;
|
|
5
|
+
validator(): boolean;
|
|
6
|
+
update(): void;
|
|
7
|
+
importExample: (e: Event) => void;
|
|
8
|
+
execute(): void;
|
|
9
|
+
}
|
|
10
|
+
export { ImportExampleAction };
|