summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/welcome/shared/nux_types.js
blob: 3c8be494718f97f0f579c1b3f408507c9bbc9ffd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright 2018 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.

/**
 * @typedef {{
 *   id: number,
 *   name: string,
 *   icon: string,
 *   url: string,
 * }}
 */
export let BookmarkListItem;

/**
 * @typedef {{
 *   total: number,
 *   active: number,
 * }}
 */
export let stepIndicatorModel;

/**
 * TODO(hcarmona): somehow reuse from
 * c/b/r/s/default_browser_page/default_browser_browser_proxy.js
 * @typedef {{
 *   canBeDefault: boolean,
 *   isDefault: boolean,
 *   isDisabledByPolicy: boolean,
 *   isUnknownError: boolean,
 * }};
 */
export let DefaultBrowserInfo;