Skip to content

Commit

Permalink
updated default export
Browse files Browse the repository at this point in the history
  • Loading branch information
niladrix719 committed Jul 25, 2024
1 parent 9a3ef0f commit 78a06fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/simulator/src/eventQueue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ interface QueueObject {
propagationDelay: number
}

export default class EventQueue {
export class EventQueue {
size: number
queue: Array<QueueObject>
frontIndex: number
Expand Down
2 changes: 1 addition & 1 deletion src/simulator/src/simulationArea.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-disable import/no-cycle */
import EventQueue from './eventQueue'
import { EventQueue } from './eventQueue'
import { clockTick } from './utils'

/**
Expand Down

0 comments on commit 78a06fd

Please sign in to comment.