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 the read me you can find:
Catching trigger errors
pubnub.getError((err) => { console.log(err); });
But when you want to do this with Typescript, you need to add a channel as parameter (See file pubnub-angular4.d.ts):
getError(channel: string | string[], callback: (error: any) => void): void;
Can this be done without a channel and just catch all errors?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the read me you can find:
Catching trigger errors
But when you want to do this with Typescript, you need to add a channel as parameter (See file pubnub-angular4.d.ts):
getError(channel: string | string[], callback: (error: any) => void): void;
Can this be done without a channel and just catch all errors?
The text was updated successfully, but these errors were encountered: