Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 24 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | /** |
||
12 | import Date from './Input/Date'; |
||
13 | import Color from './Input/Color'; |
||
14 | import Time from './Input/Time'; |
||
15 | import Tags from './Input/Tags'; |
||
16 | import Mask from './Input/Mask'; |
||
17 | |||
18 | /** |
||
19 | * Class Input |
||
20 | * |
||
21 | * @author Teguh Rianto |
||
22 | * @package Components |
||
23 | */ |
||
24 | export default class Input { |
||
25 | /** |
||
26 | * Input.constructor |
||
27 | */ |
||
28 | constructor() { |
||
29 | this.date = new Date(); |
||
30 | this.color = new Color(); |
||
31 | this.time = new Time(); |
||
32 | this.tags = new Tags(); |
||
33 | this.mask = new Mask(); |
||
34 | } |
||
35 | } |