Skip to content

Commit

Permalink
chore(utilities): update api.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mainframev committed Dec 20, 2024
1 parent 203def7 commit 401341a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/utilities/etc/utilities.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export function arraysEqual<T>(array1: T[], array2: T[]): boolean;

// @public
export function asAsync<TProps extends {}>(options: IAsAsyncOptions<TProps>): React_2.ForwardRefExoticComponent<React_2.PropsWithoutRef<TProps & {
asyncPlaceholder?: React_2.ElementType<any> | undefined;
asyncPlaceholder?: React_2.ElementType;
}> & React_2.RefAttributes<React_2.ElementType<TProps>>>;

// @public
Expand Down Expand Up @@ -160,7 +160,7 @@ export function createArray<T>(size: number, getItem: (index: number) => T): T[]
export function createMemoizer<F extends (input: any) => any>(getValue: F): F;

// @public
export const createMergedRef: <TType, TValue = null>(value?: TValue | undefined) => (...newRefs: (React_2.Ref<TType | TValue | null> | undefined)[]) => (newValue: TType | TValue | null) => void;
export const createMergedRef: <TType, TValue = null>(value?: TValue) => (...newRefs: (React_2.Ref<TType | null | TValue> | undefined)[]) => ((newValue: TType | TValue | null) => void);

// Warning: (ae-incompatible-release-tags) The symbol "css" is marked as @public, but its signature references "ICssInput" which is marked as @internal
//
Expand Down Expand Up @@ -1171,7 +1171,7 @@ export function resetIds(counter?: number): void;
export function resetMemoizations(): void;

// @public
export const safeRequestAnimationFrame: (component: React_2.Component) => (cb: Function) => void;
export const safeRequestAnimationFrame: (component: React_2.Component) => ((cb: Function) => void);

// @public
export const safeSetTimeout: (component: React_2.Component) => (cb: Function, duration: number) => void;
Expand Down

0 comments on commit 401341a

Please sign in to comment.