UNPKG

strapi-plugin-firebase-authentication

Version:

Allows easy integration between clients utilizing Firebase for authentication and Strapi

10 lines (9 loc) 284 B
interface QueryParams { [key: string]: any; } declare const useQueryParams: (initialParams?: QueryParams) => { query: QueryParams | undefined; rawQuery: string; setQuery: (nextParams: QueryParams, method?: "push" | "remove") => void; }; export default useQueryParams;