Skip to content

Instantly share code, notes, and snippets.

@arturovt
Last active July 27, 2019 16:34
Show Gist options
  • Save arturovt/107ce5522a475b4e23f1db0177a77878 to your computer and use it in GitHub Desktop.
Save arturovt/107ce5522a475b4e23f1db0177a77878 to your computer and use it in GitHub Desktop.
type HasTaskState = {
microTask: boolean;
macroTask: boolean;
eventTask: boolean;
change: TaskType;
};
type TaskType = 'microTask' | 'macroTask' | 'eventTask';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment