export interface DataStrategy { load(): Promise; delete(url: string, id: any[]): Promise; save(url: string, data: any): Promise; }