life-towers/src/app/interfaces/range.ts

4 lines
50 B
TypeScript
Executable file

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