Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class Dashboard {
  2.  
  3. @refreshable({
  4. func: getCountroies,
  5. intervalMs: 1000 * 60 * 60
  6. })
  7. countries: Countrie[];
  8. }
  9.  
  10. function getCountroies(e: Error): Promise<Countrie[]> {
  11. // some code
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement