@posx/core 5.3.83 → 5.3.84

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 CHANGED
@@ -381,6 +381,7 @@ declare module '@posx/core/services/abstract.service' {
381
381
  export abstract class AppCoreService<T extends IAppCoreModel> implements IAppCoreService<T> {
382
382
  db: Dexie;
383
383
  moduleName: string;
384
+ get table(): Dexie.Table<T>;
384
385
  liveQuery<T>(expr: () => T): Observable<T>;
385
386
  saveOne(item: T): Promise<T>;
386
387
  saveMany(items: T[]): Promise<T[]>;