blob: 7ef90903fb6ff84a79f5517f52c60ba66e2196bf [file] [log] [blame]
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
export class TitleItem {
title: string;
expandable: boolean;
expanded: boolean;
constructor(
title: string, expandable: boolean = false, expanded: boolean = false) {
this.title = title;
this.expandable = expandable;
this.expanded = expanded;
}
}