blob: 57ede351155c7e52c9a770e024c4f52ea1a62f81 [file] [log] [blame]
Adrià Vilanova Martínezf19ea432024-01-23 20:20:52 +01001// Copyright 2019 The Chromium Authors
Copybara854996b2021-09-07 19:36:02 +00002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5import 'shared/typedef.js';
6
7export const PROJECT_STAR_NAME = 'users/1234/projectStars/monorail';
8export const PROJECT_STAR_NAME_2 = 'users/1234/projectStars/chromium';
9
10/** @type {ProjectStar} */
11export const PROJECT_STAR = Object.freeze({
12 name: PROJECT_STAR_NAME,
13});
14
15/** @type {ProjectStar} */
16export const PROJECT_STAR_2 = Object.freeze({
17 name: PROJECT_STAR_NAME_2,
18});