@prozilla-os/core 1.3.7 → 1.3.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/dist/main.d.ts +6 -0
- package/dist/main.js +8863 -8808
- package/dist/main.js.map +1 -1
- package/package.json +2 -2
package/dist/main.d.ts
CHANGED
|
@@ -960,6 +960,10 @@ declare class VirtualBase extends EventEmitter<EventNamesMap> {
|
|
|
960
960
|
editedByUser: boolean | undefined | null;
|
|
961
961
|
isRoot: boolean | undefined | null;
|
|
962
962
|
root: VirtualRoot | undefined | null;
|
|
963
|
+
isDeleted: boolean;
|
|
964
|
+
static EVENT_NAMES: {
|
|
965
|
+
update: string;
|
|
966
|
+
};
|
|
963
967
|
constructor(name: string);
|
|
964
968
|
get id(): string;
|
|
965
969
|
setName(name: string): this;
|
|
@@ -1051,6 +1055,7 @@ export declare class VirtualFile extends VirtualBase {
|
|
|
1051
1055
|
content: OptionalStringProperty;
|
|
1052
1056
|
static NON_TEXT_EXTENSIONS: string[];
|
|
1053
1057
|
static EVENT_NAMES: {
|
|
1058
|
+
update: string;
|
|
1054
1059
|
contentChange: string;
|
|
1055
1060
|
};
|
|
1056
1061
|
constructor(name: string, extension?: string);
|
|
@@ -1255,6 +1260,7 @@ export declare class VirtualRoot extends VirtualFolder {
|
|
|
1255
1260
|
loadedDefaultData: boolean;
|
|
1256
1261
|
systemManager: SystemManager;
|
|
1257
1262
|
static EVENT_NAMES: {
|
|
1263
|
+
update: string;
|
|
1258
1264
|
error: string;
|
|
1259
1265
|
};
|
|
1260
1266
|
constructor(systemManager: SystemManager);
|