export function overrideParseStoresSpec(origFunc: (fn: any) => any): any { return function (this: any, stores: any, dbSchema: any): any { stores._versions = 'uid,band,table,deleted'; stores._dsync = 'key,type'; origFunc.call(this, stores, dbSchema); }; }