lazycss-base
Version:
A javaScript powered Css tool
8 lines (7 loc) • 690 B
TypeScript
declare const render: (DomName: string, StyleMap: any, namespace?: string) => Promise<false | undefined>;
declare const pseudoRender: (DomName: string, pseudoType: string, pseudoMap: any, namespace?: string) => Promise<void>;
declare const childRender: (fatherNode: string, childList: any, namespace?: string) => Promise<false | undefined>;
declare const oneChildRender: (fatherNode: string, childName: string, cssList: Object, namespace?: string) => Promise<false | undefined>;
declare const getDom: (tagName: string) => false | HTMLStyleElement;
declare const humpToLine: (value: string) => string;
export { render, pseudoRender, childRender, humpToLine, getDom, oneChildRender };