( query: string | LiveQuery<T> | Promise<LiveQuery<T>>, params?: unknown[] | null, )
| 112 | ): LiveQueryResults<T> | undefined |
| 113 | |
| 114 | export function useLiveQuery<T = { [key: string]: unknown }>( |
| 115 | query: string | LiveQuery<T> | Promise<LiveQuery<T>>, |
| 116 | params?: unknown[] | null, |
| 117 | ): LiveQueryResults<T> | undefined { |
| 118 | return useLiveQueryImpl<T>(query, params) |
| 119 | } |
| 120 | |
| 121 | useLiveQuery.sql = function <T = { [key: string]: unknown }>( |
| 122 | strings: TemplateStringsArray, |