Passed
Push — master ( 131f58...233c6a )
by Felipe Catão do
01:12
created

Render   A

Complexity

Total Complexity 8

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 9
dl 0
loc 12
rs 10
c 0
b 0
f 0
wmc 8

8 Functions

Rating   Name   Duplication   Size   Complexity  
A addStyle 0 1 1
A createHtml 0 1 1
A changeContent 0 1 1
A newElement 0 1 1
A clearPage 0 1 1
A removeElement 0 1 1
A registerDinamicPage 0 1 1
A setAtribute 0 1 1
1
//Write this document for import for all functions of Lavine.js//
2
3
//render Lavine module
4
export class Render{
5
    newElement(renderElement:any,content:any,selectObject:any,classList:any,Id:any):void
6
    createHtml(elementTarget:any,content:any):void
7
    changeContent(id:any,content:any):void
8
    removeElement(element:any):void
9
    setAtribute(elementId:any,atribute:any,value:any):void
10
    addStyle(elementId:any,ruleCss:any):void
11
    registerDinamicPage(pageId:any):void
12
    clearPage():void
13
}