Skip to content

Commit

Permalink
Fix README
Browse files Browse the repository at this point in the history
  • Loading branch information
gilbarbara committed Jul 10, 2021
1 parent 35b9999 commit 2100f48
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ webSession.update();
<details>
<summary>Type Definition</summary>

export type AnyObject<T = any> = Record<string, T>;
export type NarrowPlainObject<T> = Exclude<T, any[] | ((...items: any[]) => any)>;

```typescript
type AnyObject<T = any> = Record<string, T>;
type NarrowPlainObject<T> = Exclude<T, any[] | ((...items: any[]) => any)>;

interface Options {
  /*
   * A function called on every update that receive the session data.
Expand Down

0 comments on commit 2100f48

Please sign in to comment.