UNPKG

agenda-admin

Version:
12 lines (11 loc) 306 B
export declare type OptionsType = { itemsPerPage?: number; username?: string; password?: string; } | undefined; export declare const setOptions: (newOptions: OptionsType) => void; export declare const getOptions: () => { itemsPerPage: number; username: string; password: string; };