Skip to content

Commit 63bb70e

Browse files
committed
Remove a bunch of "@public" and "@beta" tags for APIs that were removed a long time ago
1 parent 82ad953 commit 63bb70e

17 files changed

Lines changed: 3 additions & 38 deletions

apps/rush-lib/src/api/ChangeFile.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import {
1414

1515
/**
1616
* This class represents a single change file.
17-
* @public
1817
*/
1918
export class ChangeFile {
2019
private _changeFileData: IChangeFile;

apps/rush-lib/src/api/ChangeManagement.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
/**
55
* Representation for a changes file
6-
* @public
76
*/
87
export interface IChangeFile {
98
changes: IChangeInfo[];
@@ -13,7 +12,6 @@ export interface IChangeFile {
1312

1413
/**
1514
* Represents all of the types of change requests.
16-
* @public
1715
*/
1816
export enum ChangeType {
1917
none = 0,
@@ -26,7 +24,6 @@ export enum ChangeType {
2624

2725
/**
2826
* Defines an IChangeInfo object.
29-
* @public
3027
*/
3128
export interface IChangeInfo {
3229
/**

apps/rush-lib/src/api/Changelog.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
2+
// See LICENSE in the project root for license information.
3+
14
/**
25
* Interface respresenting a changelog json object for a package used to represent the parsed
36
* content of CHANGELOG.json
4-
*
5-
* @beta
67
*/
78
export interface IChangelog {
89
/**
@@ -18,8 +19,6 @@ export interface IChangelog {
1819

1920
/**
2021
* Interface representing a single published entry in the changelog.
21-
*
22-
* @beta
2322
*/
2423
export interface IChangeLogEntry {
2524
/**
@@ -56,8 +55,6 @@ export interface IChangeLogEntry {
5655

5756
/**
5857
* Interface representing a single changelog comment within an entry.
59-
*
60-
* @beta
6158
*/
6259
export interface IChangeLogComment {
6360
/**

apps/rush-lib/src/api/CommandLineConfiguration.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import {
1919

2020
/**
2121
* Custom Commands and Options for the Rush Command Line
22-
* @public
2322
*/
2423
export class CommandLineConfiguration {
2524
private static _jsonSchema: JsonSchema = JsonSchema.fromFile(

apps/rush-lib/src/api/Rush.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ export class Rush {
6464
/**
6565
* The currently executing version of the "rush-lib" library.
6666
* This is the same as the Rush tool version for that release.
67-
* @public
6867
*/
6968
public static get version(): string {
7069
if (!Rush._version) {

apps/rush-lib/src/api/RushConfiguration.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ export interface IRushConfigurationJson {
117117

118118
/**
119119
* This represents the JSON data structure for the "rush-link.json" data file.
120-
* @public
121120
*/
122121
export interface IRushLinkJson {
123122
localLinks: {
@@ -127,7 +126,6 @@ export interface IRushLinkJson {
127126

128127
/**
129128
* This represents the JSON data structure for the "current-variant.json" data file.
130-
* @public
131129
*/
132130
export interface ICurrentVariantJson {
133131
variant: string | null; // Use `null` instead of `undefined` because `undefined` is not handled by JSON.

apps/rush-lib/src/api/Variants.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import {
99
export namespace Variants {
1010
/**
1111
* Provides the parameter configuration for '--variant'.
12-
* @beta
1312
*/
1413
export const VARIANT_PARAMETER: ICommandLineStringDefinition = {
1514
parameterLongName: '--variant',

apps/rush-lib/src/api/VersionMismatchFinder.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ export interface IVersionMismatchFinderGetMismatchesOptions {
2727
variant?: string | undefined;
2828
}
2929

30-
/**
31-
* @public
32-
*/
3330
export class VersionMismatchFinder {
3431
/* store it like this:
3532
* {

apps/rush-lib/src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,3 @@ export {
6565
} from './api/VersionPolicyConfiguration';
6666

6767
export { Rush } from './api/Rush';
68-

apps/rush-lib/src/logic/RushConstants.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,6 @@ export namespace RushConstants {
119119
*/
120120
export const commandLineFilename: string = 'command-line.json';
121121

122-
/**
123-
* @beta
124-
*/
125122
export const versionPoliciesFilename: string = 'version-policies.json';
126123

127124
/**

0 commit comments

Comments
 (0)