UNPKG
@jameshclrk/rxdb-hooks
Version:
latest (6.0.1)
6.0.1
React hooks for integrating with RxDB
github.com/jameshclrk/rxdb-hooks
jameshclrk/rxdb-hooks
@jameshclrk/rxdb-hooks
/
dist
/
useRxCollection.d.ts
4 lines
(3 loc)
•
160 B
TypeScript
View Raw
1
2
3
4
import
{
RxCollection
}
from
'rxdb'
;
declare
function
useRxCollection<T>(
dbName
:
string
,
name
:
string
):
RxCollection
<T> |
null
;
export
default
useRxCollection;