@chayns-components/person-finder
Version:
A set of beautiful React components for developing your own applications with chayns.
13 lines (12 loc) • 360 B
TypeScript
import { PersonEntryResult } from '../../types/personFinder';
interface GetPersonResult {
list: PersonEntryResult[];
count: number;
}
interface GetPersonsOptions {
search: string;
skip: number;
take?: number;
}
export declare const getPersons: ({ search, skip, take }: GetPersonsOptions) => Promise<GetPersonResult | undefined>;
export {};