UNPKG

seti-ramesesv1

Version:

Reusable components and context for Next.js apps

15 lines (14 loc) 444 B
type ApplicationItem = { [key: string]: any; }; interface GetApplicationListParams { start?: number; limit: number; tag: string; searchtext?: string; searchfields?: string[]; filters?: Record<string, string>; } export declare const getApplicationList: (params: GetApplicationListParams) => ApplicationItem[]; export declare const getApplicationByTrackNo: (trackno: string) => ApplicationItem | undefined; export {};