Passed
Push — develop ( 9011bf...5a7fee )
by Endre
03:38
created

src/Application/View/Page/Model.ts

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 9
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 7
dl 0
loc 9
ccs 1
cts 1
cp 1
c 0
b 0
f 0
wmc 0
mnd 0
bc 0
fnc 0
bpm 0
cpm 0
noi 0
1
import React from 'react';
2
3
export default class Model {
4
  module: typeof React.Component | null;
5
6
  constructor() {
7 11
    this.module = null;
8
  }
9
}