next-box 2.4.2 → 2.4.3
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.
|
@@ -7,7 +7,7 @@ declare const API: unique symbol;
|
|
|
7
7
|
declare const UPGRADE: unique symbol;
|
|
8
8
|
export type MigrateHandler = (data: any) => any;
|
|
9
9
|
export interface FileEngineConfig {
|
|
10
|
-
name
|
|
10
|
+
name?: string;
|
|
11
11
|
path?: string;
|
|
12
12
|
}
|
|
13
13
|
export declare class FileEngine<T> extends Api {
|
|
@@ -15,7 +15,7 @@ export declare class FileEngine<T> extends Api {
|
|
|
15
15
|
private [CONFIG]?;
|
|
16
16
|
private [VERSION];
|
|
17
17
|
private [UPGRADE];
|
|
18
|
-
constructor(version: number, config
|
|
18
|
+
constructor(version: number, config?: FileEngineConfig, state?: AppState);
|
|
19
19
|
get name(): string;
|
|
20
20
|
get path(): string;
|
|
21
21
|
get fullName(): string;
|