Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 9 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import {EventType} from './Event.entity'; |
||
2 | import {User} from '../HumanResource/User/User.entity'; |
||
3 | |||
4 | export class EventsGenerator { |
||
5 | public async generate(user: User, from: Date, to: Date, type: EventType) { |
||
6 | return ''; |
||
7 | } |
||
8 | } |
||
9 |