Skip to content

Commit

Permalink
Update phase.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
aliraza556 authored Dec 4, 2024
1 parent fee3e8d commit 8e7ba6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/store/phase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ interface PhaseTickets {
[phase_uuid: string]: Ticket[];
}

export interface ITicketStore {
export interface TicketStore {
tickets: Map<string, Ticket>;
phaseTickets: PhaseTickets;

Expand All @@ -15,7 +15,7 @@ export interface ITicketStore {
getPhaseTickets: (phase_uuid: string) => Ticket[];
}

export class PhaseTicketStore implements ITicketStore {
export class PhaseTicketStore implements TicketStore {
tickets: Map<string, Ticket> = new Map();
phaseTickets: PhaseTickets = {};

Expand Down

0 comments on commit 8e7ba6b

Please sign in to comment.