UNPKG

@velis/dynamicforms

Version:

Data entry boilerplate components and a RESTful API consumer

9 lines 471 B
import { AxiosRequestConfig } from 'axios'; import { IViewSet } from './namespace'; import ViewGeneric from './view-generic'; export default class ViewSetGeneric<T> extends ViewGeneric<T> implements IViewSet<T> { protected list_url: string; constructor(list_url: string, get_url: string, post_url: string, update_url: string, delete_url: string); list: (config: AxiosRequestConfig | undefined) => Promise<T[]>; } //# sourceMappingURL=view-set-generic.d.ts.map