Skip to content

Commit

Permalink
perf(equals): update apis change
Browse files Browse the repository at this point in the history
  • Loading branch information
kamontat committed Dec 18, 2023
1 parent eca6b01 commit 7a6fe51
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion common/reviews/api/equals.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@
```ts

// @public
export const checkType: (a: unknown, b: unknown) => boolean;

// Warning: (ae-forgotten-export) The symbol "ISettings" needs to be exported by the entry point index.d.ts
//
// @beta
export const equals: <T>(a: T, b: T, setting: ISettings) => boolean;
export const equals: (a: unknown, b: unknown, setting: ISettings) => boolean;

// (No @packageDocumentation comment for this package)

Expand Down

0 comments on commit 7a6fe51

Please sign in to comment.