fix missing annotations

Signed-off-by: Johan Haals <johan.haals@gmail.com>
This commit is contained in:
Johan Haals
2022-01-21 15:08:57 +01:00
parent 2b92120edb
commit 0e09335809
2 changed files with 2 additions and 4 deletions
-4
View File
@@ -8,8 +8,6 @@ export function getByReleaseLine(
options: GetByReleaseLineOptions,
): Promise<ReleaseManifest>;
// Warning: (ae-missing-release-tag) "GetByReleaseLineOptions" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public
export type GetByReleaseLineOptions = {
releaseLine: string;
@@ -20,8 +18,6 @@ export function getByVersion(
options: GetByVersionOptions,
): Promise<ReleaseManifest>;
// Warning: (ae-missing-release-tag) "GetByVersionOptions" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public
export type GetByVersionOptions = {
version: string;
@@ -28,6 +28,7 @@ export type ReleaseManifest = {
/**
* Options for getByVersion.
* @public
*/
export type GetByVersionOptions = {
version: string;
@@ -55,6 +56,7 @@ export async function getByVersion(
/**
* Options for getByReleaseLine.
* @public
*/
export type GetByReleaseLineOptions = {
releaseLine: string;