Last active
June 26, 2019 12:34
-
-
Save farhang/54ad6bf05b9e72c26d04df410ed891ef to your computer and use it in GitHub Desktop.
Angular Snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export type SortDirection = 'asc' | 'desc' | ''; | |
| const rotate: {[key: string]: SortDirection} = { asc: 'desc', desc: '', '': 'asc' }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment