diff --git a/backend/src/helpers/WhatsQueueIndex.ts b/backend/src/helpers/WhatsQueueIndex.ts index 0dd12d3..5eaddec 100644 --- a/backend/src/helpers/WhatsQueueIndex.ts +++ b/backend/src/helpers/WhatsQueueIndex.ts @@ -1,16 +1,16 @@ - + class WhatsQueueIndex { - static staticIndex:Number = 0; - - static setIndex(index:Number){ + static staticIndex: number = 0; + + static setIndex(index: number) { this.staticIndex = index } - static getIndex(){ + static getIndex() { return this.staticIndex } - } - - export default WhatsQueueIndex; \ No newline at end of file +} + +export default WhatsQueueIndex; \ No newline at end of file