Ikagaka/ghost-kernel.js

View on GitHub
lib/components/TimerEventState.ts

Summary

Maintainability
A
0 mins
Test Coverage
export class TimerEventState {
  enabled: boolean;
  initializedTime: Date;
  constructor(initializedTime = new Date()) {
    this.enabled = false;
    this.initializedTime = initializedTime;
  }
}