• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1import {TimeRange, Timestamp} from 'common/time';
2
3export class MiniTimelineDrawerOutput {
4  constructor(
5    public selectedPosition: Timestamp,
6    public selection: TimeRange,
7  ) {}
8}
9