Skip to content

Instantly share code, notes, and snippets.

@kleinron
Created November 13, 2021 21:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kleinron/2003d8742da755cdf4f0f0de18786238 to your computer and use it in GitHub Desktop.
Save kleinron/2003d8742da755cdf4f0f0de18786238 to your computer and use it in GitHub Desktop.
queue interface
interface Queue {
enqueue(item: any): void;
dequeue(): any;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment