1// Copyright 2021 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5import {CSSColor, DOM, SVG, V8CustomElement} from '../helper.mjs';
6
7import {TimelineTrackBase} from './timeline-track-base.mjs'
8
9DOM.defineCustomElement(
10    'view/timeline/timeline-track',
11    (templateText) => class TimelineTrack extends TimelineTrackBase {
12      constructor() {
13        super(templateText);
14      }
15    })