3 lines
55 B
TypeScript
3 lines
55 B
TypeScript
export interface Adapter<T> {
|
|
adapt(item: any): T;
|
|
}
|
export interface Adapter<T> {
|
|
adapt(item: any): T;
|
|
}
|