@luminix/core 0.0.1-beta.7 → 0.0.1-beta.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/contracts/Builder.d.ts +1 -1
- package/dist/contracts/Collection.d.ts +1 -1
- package/dist/core.js +353 -353
- package/dist/facades/App.d.ts +1 -1
- package/dist/facades/Model.d.ts +1 -1
- package/dist/mixins/HasEvents.d.ts +1 -1
- package/dist/types/Model.d.ts +2 -2
- package/package.json +3 -2
|
@@ -42,7 +42,7 @@ declare class Builder implements BuilderInterface {
|
|
|
42
42
|
}
|
|
43
43
|
declare const _default: {
|
|
44
44
|
new (...args: any[]): {
|
|
45
|
-
|
|
45
|
+
emitter: import('nanoevents').Emitter<import('../types/Event').EventSourceEvents>;
|
|
46
46
|
"__#1@#createNanoEvents"(): import('nanoevents').Emitter<import('../types/Event').EventSourceEvents>;
|
|
47
47
|
on<E extends "change" | "submit" | "success" | "error">(event: E, callback: BuilderEventMap[E]): Unsubscribe;
|
|
48
48
|
once<E_1 extends "change" | "submit" | "success" | "error">(event: E_1, callback: BuilderEventMap[E_1]): void;
|
|
@@ -179,7 +179,7 @@ export declare class Collection<T> implements CollectionInterface<T> {
|
|
|
179
179
|
}
|
|
180
180
|
declare const _default: {
|
|
181
181
|
new (...args: any[]): {
|
|
182
|
-
|
|
182
|
+
emitter: import('nanoevents').Emitter<import('../types/Event').EventSourceEvents>;
|
|
183
183
|
"__#1@#createNanoEvents"(): import('nanoevents').Emitter<import('../types/Event').EventSourceEvents>;
|
|
184
184
|
on<E extends "change">(event: E, callback: CollectionEvents<unknown>[E]): Unsubscribe;
|
|
185
185
|
once<E_1 extends "change">(event: E_1, callback: CollectionEvents<unknown>[E_1]): void;
|