function rxdbCollectionOptions<T>(config): CollectionConfig<InferSchemaOutput<T>, string, T, UtilsRecord> & object;
Defined in: rxdb.ts:89
Creates RxDB collection options for use with a standard Collection
T extends StandardSchemaV1<unknown, unknown>
RxDBCollectionConfig<InferSchemaOutput<T>, T>
Configuration options for the RxDB collection
CollectionConfig<InferSchemaOutput<T>, string, T, UtilsRecord> & object
Collection options with utilities
function rxdbCollectionOptions<T>(config): CollectionConfig<T, string, never, UtilsRecord> & object;
Defined in: rxdb.ts:96
Creates RxDB collection options for use with a standard Collection
T extends object
Omit<BaseCollectionConfig<T, string, never, UtilsRecord, any>, "onInsert" | "onUpdate" | "onDelete" | "getKey"> & object & object
Configuration options for the RxDB collection
CollectionConfig<T, string, never, UtilsRecord> & object
Collection options with utilities