life-towers/src/app/interfaces/range.ts
2019-09-01 18:13:21 +02:00

4 lines
50 B
TypeScript

export interface Range<T> {
from: T;
to: T;
}