Framework/components.d.ts   A
last analyzed

Complexity

Total Complexity 6
Complexity/F 1

Size

Lines of Code 5
Function Count 6

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 5
rs 10
c 0
b 0
f 0
wmc 6
mnd 0
bc 0
fnc 6
bpm 0
cpm 1
noi 0

3 Functions

Rating   Name   Duplication   Size   Complexity  
A ComponentsEngine.createComponent 0 1 1
A ComponentsEngine.renderComponent 0 1 1
A ComponentsEngine.addListener 0 1 1
1
export class ComponentsEngine{
2
    createComponent(componentName:any,content:any):void
3
    renderComponent(targetRender:any,componentName:any):void
4
    addListener(targetElement:any,type:any,functionCall:any):void
5
}