blob: 426e42e83d77ded3c91d2295c7a469c2865a9c0c [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
class SearchItem {
constructor() {
/**
* @type {boolean}
*/
this.isHeaderItem;
/**
* @type {string}
*/
this.searchQuery;
}
}