next-box 1.1.8 → 1.1.9
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.
- package/app.d.ts +3 -3
- package/package.json +1 -1
package/app.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, EventHandler } from './event-emitter';
|
|
2
|
-
import { AppState, ExtensionEvents
|
|
2
|
+
import { AppState, ExtensionEvents } from './interfaces';
|
|
3
3
|
export declare class NextBox extends EventEmitter {
|
|
4
4
|
state?: AppState;
|
|
5
5
|
debug: boolean;
|
|
@@ -17,11 +17,11 @@ export declare class NextBox extends EventEmitter {
|
|
|
17
17
|
/**
|
|
18
18
|
* Reading metadata extension
|
|
19
19
|
*/
|
|
20
|
-
readMeta(): Promise<
|
|
20
|
+
readMeta(): Promise<any>;
|
|
21
21
|
/**
|
|
22
22
|
* Saving metadata extension
|
|
23
23
|
*/
|
|
24
|
-
saveMeta(body:
|
|
24
|
+
saveMeta(body: any): Promise<any>;
|
|
25
25
|
/**
|
|
26
26
|
* Submit a content change message
|
|
27
27
|
* In the case when content is written before exiting the application or when writing large files
|