OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 /** | 5 /** |
6 * @return {!Help.ReleaseNote} | 6 * @return {!Help.ReleaseNote} |
7 */ | 7 */ |
8 Help.latestReleaseNote = function() { | 8 Help.latestReleaseNote = function() { |
9 if (!Help._latestReleaseNote) { | 9 if (!Help._latestReleaseNote) { |
10 /** @type {!Help.ReleaseNote} */ | 10 /** @type {!Help.ReleaseNote} */ |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 /** | 55 /** |
56 * @const | 56 * @const |
57 * @type {string} | 57 * @type {string} |
58 */ | 58 */ |
59 Help._releaseNoteViewId = 'release-note'; | 59 Help._releaseNoteViewId = 'release-note'; |
60 | 60 |
61 /** @typedef {!{title: string, subtitle: string, link: string}} */ | 61 /** @typedef {!{title: string, subtitle: string, link: string}} */ |
62 Help.ReleaseNoteHighlight; | 62 Help.ReleaseNoteHighlight; |
63 | 63 |
64 /** | 64 /** |
65 * @typedef {!{version: number, date: string, highlights: !Array<!Help.ReleaseNo
teHighlight>, | 65 * @typedef {!{version: number, header: string, highlights: !Array<!Help.Release
NoteHighlight>, |
66 * link: string}} | 66 * link: string}} |
67 */ | 67 */ |
68 Help.ReleaseNote; | 68 Help.ReleaseNote; |
OLD | NEW |