Skip to content

Instantly share code, notes, and snippets.

@vlio20
Created September 9, 2019 18:39
Show Gist options
  • Save vlio20/4c8c297deb9d628d8c4bf799bf2aa4cf to your computer and use it in GitHub Desktop.
Save vlio20/4c8c297deb9d628d8c4bf799bf2aa4cf to your computer and use it in GitHub Desktop.
refreshable
class Dashboard {
@refreshable({
func: getCountroies,
intervalMs: 1000 * 60 * 60
})
countries: Countrie[];
}
function getCountroies(e: Error): Promise<Countrie[]> {
// some code
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment