Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. const asyncDoSomethingWithResult = (result: number, callback: GenericAsyncCallback<Error, string>) => {
  2. setTimeout(() => {
  3. if (result % 2 === 0) callback(new Error(`Result Infraction`));
  4. else callback(null, "It's all going to be ok.")
  5. }, 1000);
  6. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement