Skip to content

Instantly share code, notes, and snippets.

@Haosvit
Created April 30, 2020 09:03
Show Gist options
  • Save Haosvit/80ce3f39aeccceec47bca160e55a03ba to your computer and use it in GitHub Desktop.
Save Haosvit/80ce3f39aeccceec47bca160e55a03ba to your computer and use it in GitHub Desktop.
// Moment from 'momentjs'
type PresetTimePoint = 'today' | 'yesterday' | 'lastWeek' | 'lastMonth' | 'lastYear';
type PresetDateRanges = {
[k in PresetTimePoint]: {
label: string;
range: [Moment, Moment];
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment