Remove API service interface

This commit is contained in:
Tee
2021-03-01 22:00:14 -05:00
parent 320d62dd41
commit b12e306c73

View File

@ -1,7 +0,0 @@
import { Query } from "./query";
export interface APIService<T> {
find: (id: string) => Promise<T[]>;
all: () => Promise<T[]>;
where: (params: Query[]) => Promise<T[]>;
}