Skip to content
This repository has been archived by the owner on Aug 16, 2023. It is now read-only.

Commit

Permalink
🐛 Eliminate unnecessary constraints of the id in emit
Browse files Browse the repository at this point in the history
  • Loading branch information
ci7lus committed Aug 13, 2020
1 parent 70db2d5 commit 849d527
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ironpipe",
"version": "0.0.4",
"version": "0.0.5",
"author": "ci7lus <[email protected]>",
"description": "TypeScript typed helpers for pipedream.",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/component/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ type ComponentThis<Props, Methods> = ThisType<
$props: Props
$emit: (
data: ObjectLiteral,
metadata?: ObjectLiteral & { id: string } // metadata requires id
metadata?: ObjectLiteral & { id: any } // metadata requires id
) => void
} & Props &
Methods &
Expand Down

0 comments on commit 849d527

Please sign in to comment.