Skip to content

Commit

Permalink
push an object
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderkirtzel committed Jun 5, 2024
1 parent 579c5b9 commit aa9d3df
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/types/src/walkeros.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,13 @@ export interface Elb<R = void> {
(partialEvent: PartialEvent): R;
}

export type PushData = string | Partial<Config> | Consent | User | Properties;
export type PushData =
| string
| object
| Partial<Config>
| Consent
| User
| Properties;

export type PushOptions = Hooks.AnyFunction | SingleOrArray<On.Options>;

Expand Down

0 comments on commit aa9d3df

Please sign in to comment.