We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In src/intercomAPI.ts on branch 2.0, args should be an object, not an array.
2.0
args
object
array
Just change line 1 from:
export default function(method: string, ...args: Array<any>) {
to:
export default function(method: string, args: any) {
The text was updated successfully, but these errors were encountered:
Not sure if this is what is being proposed fixed in #77? I think it is.
Sorry, something went wrong.
True, though #77 lumps method and args together. Either way, we achieve the same goal, so I'll close this issue.
method
No branches or pull requests
In src/intercomAPI.ts on branch
2.0
,args
should be anobject
, not anarray
.Just change line 1 from:
to:
The text was updated successfully, but these errors were encountered: