4 lines
50 B
TypeScript
Executable file
4 lines
50 B
TypeScript
Executable file
export interface Range<T> {
|
|
from: T;
|
|
to: T;
|
|
}
|