huddle-record
Version:
Record is a Object-Relational Mapping (ORM) TypeScript plugin that makes it easy to work with data.
13 lines (12 loc) • 322 B
TypeScript
import type { AxiosRequestConfig } from 'axios';
export interface ApiRequestConfig {
config?: AxiosRequestConfig;
replace?: boolean;
update?: boolean;
save?: boolean;
source?: string | null;
delete?: number | number[] | string;
deleteValue?: any;
dataset?: string;
prepend?: boolean;
}