Type alias FindOptions<S, N>

FindOptions<S, N>: Partial<QueryOptions & Pick<QueryConfig<S, N>, "sort" | "includes"> & {
    limit: number;
    offset: number;
}>

Type Parameters