import firebase from 'firebase/compat/app'; export default interface ICategoryQueryOptions { readonly startAt: firebase.firestore.DocumentSnapshot; readonly limit: number; readonly orderBy: string; readonly query: { readonly field: string; readonly operator: '<' | '<=' | '==' | '>' | '>=' | 'array-contains' | 'array-contains-any' | 'in'; readonly value: any; }[]; }