Skip to content

Instantly share code, notes, and snippets.

@vlio20
Last active September 9, 2019 15:10
Show Gist options
  • Save vlio20/ebe5f3342b907f361ffc123a1c022a91 to your computer and use it in GitHub Desktop.
Save vlio20/ebe5f3342b907f361ffc123a1c022a91 to your computer and use it in GitHub Desktop.
utils-decorators
class WidgetProvider {
@after<WidgetProvider, Widget>({
func: () => {
console.log('widget created')
}
})
createWidget(name: string): Widget {
// some code
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment