mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
11 lines
143 B
TypeScript
11 lines
143 B
TypeScript
// TODO: create a Stack<T> generic class here:
|
|
|
|
/**
|
|
*
|
|
* export class Stack<T> {
|
|
* push(...) { ... }
|
|
* pop(...) { ... }
|
|
* }
|
|
*
|
|
*/
|