Skip to content

Instantly share code, notes, and snippets.

@farhang
Last active June 26, 2019 12:34
Show Gist options
  • Select an option

  • Save farhang/54ad6bf05b9e72c26d04df410ed891ef to your computer and use it in GitHub Desktop.

Select an option

Save farhang/54ad6bf05b9e72c26d04df410ed891ef to your computer and use it in GitHub Desktop.
Angular Snippets
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