all files / src/ main.js

75% Statements 9/12
100% Branches 0/0
0% Functions 0/3
100% Lines 8/8
1 2 3 4 5 6 7 8 9 10      
import { Daylight } from "./daylight.js";
 
function getReflectionColor(expression, config) { return Daylight.getReflectionColor(expression, config); }
function reflectToElement (element, property, config) { Daylight.reflectToElement(element, property, config); }
function reflectToPage(property, config) { Daylight.reflectToPage(property, config); }
 
export { getReflectionColor };
export { reflectToElement };
export { reflectToPage };