Skip to content

Commit c496039

Browse files
committed
Fix tag mix in api report
1 parent 31e405e commit c496039

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.api-reports/api-report-utilities_internal.api.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,7 @@ export type DecoratedPromise<TValue> = PendingPromise<TValue> | FulfilledPromise
9999
// @internal @deprecated (undocumented)
100100
export function decoratePromise<TValue>(promise: Promise<TValue>): DecoratedPromise<TValue>;
101101

102-
// Warning: (ae-internal-mixed-release-tag) Mixed release tags are not allowed for "DeepMerger" because one of its declarations is marked as @internal
103-
//
104-
// @public (undocumented)
102+
// @internal @deprecated (undocumented)
105103
export namespace DeepMerger {
106104
// (undocumented)
107105
export type ArrayMergeStrategy = "truncate" | "combine";
@@ -394,6 +392,8 @@ export function preventUnhandledRejection<T>(promise: Promise<T>): Promise<T>;
394392
// @internal @deprecated (undocumented)
395393
export type Primitive = null | undefined | string | number | boolean | symbol | bigint;
396394

395+
// Warning: (ae-incompatible-release-tags) The symbol "ReconcilerFunction" is marked as @public, but its signature references "DeepMerger" which is marked as @internal
396+
//
397397
// @public (undocumented)
398398
type ReconcilerFunction<TContextArgs extends any[]> = (this: DeepMerger<TContextArgs>, target: Record<string | number, any>, source: Record<string | number, any>, property: string | number, ...context: TContextArgs) => any;
399399

src/utilities/internal/DeepMerger.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ const defaultReconciler: ReconcilerFunction<any[]> = function (
1818
return this.merge(target[property], source[property]);
1919
};
2020

21+
/** @internal */
2122
export declare namespace DeepMerger {
2223
export interface Options {
2324
arrayMerge?: DeepMerger.ArrayMergeStrategy;

0 commit comments

Comments
 (0)