vfi-2fa
Version:
- Headless (100% customizable, Bring-your-own-UI) - Auto out of the box, fully controllable API - Sorting (Multi and Stable) - Filters - Row Selection - Row Expansion - Column Ordering - Animatable - Resizable - Server-side/controlled data/state
8 lines (7 loc) • 370 B
TypeScript
export declare const requester: {
get: (url: string, params?: {}, config?: {}) => Promise<any>;
post: (url: string, data?: {}, config?: {}) => Promise<any>;
put: (url: string, data?: {}, config?: {}) => Promise<any>;
delete: (url: string, params?: {}, config?: {}) => Promise<any>;
postForm: (url: string, data?: {}, config?: {}) => Promise<any>;
};