angular-dashboard/src/app/core/adapter.ts
2020-05-02 15:07:01 +02:00

3 lines
55 B
TypeScript

export interface Adapter<T> {
adapt(item: any): T;
}