next-box 1.3.40 → 1.3.42
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 +1 -1
- package/interfaces.d.ts +3 -0
- package/package.json +1 -1
package/app.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ export declare class NextBox extends EventEmitter {
|
|
|
18
18
|
* In the case when content is written before exiting the application or when writing large files
|
|
19
19
|
*/
|
|
20
20
|
changeContent(state: boolean): void;
|
|
21
|
-
navigate(path:
|
|
21
|
+
navigate(path: NavigateState['path'], queryParams?: NavigateState['queryParams']): void;
|
|
22
22
|
/**
|
|
23
23
|
* Send an event to close the editor
|
|
24
24
|
*/
|
package/interfaces.d.ts
CHANGED