@posx/core 5.5.127 → 5.5.129
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/build/index.d.ts +2 -2
- package/build/index.js +1 -1
- package/package.json +1 -1
- package/package.publish.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -4612,12 +4612,12 @@ declare module '@posx/core/types/shift.type' {
|
|
|
4612
4612
|
}
|
|
4613
4613
|
declare module '@posx/core/types/storage.type' {
|
|
4614
4614
|
import { AppBaseModel, IAppBaseModel } from '@posx/core/types/abstract.type';
|
|
4615
|
-
export interface IStorage<T = Record<string, unknown
|
|
4615
|
+
export interface IStorage<T = Record<string, unknown> | unknown[]> extends IAppBaseModel {
|
|
4616
4616
|
uid: string;
|
|
4617
4617
|
model: 'discounts' | string;
|
|
4618
4618
|
data: T;
|
|
4619
4619
|
}
|
|
4620
|
-
export class Storage<T = Record<string, unknown
|
|
4620
|
+
export class Storage<T = Record<string, unknown> | unknown[]> extends AppBaseModel implements IStorage<T> {
|
|
4621
4621
|
uid: string;
|
|
4622
4622
|
model: 'discounts' | string;
|
|
4623
4623
|
data: T;
|