lazycss-base
Version:
A javaScript powered Css tool
43 lines (42 loc) • 966 B
TypeScript
interface cssList {
fatherNode?: string;
namespace?: string;
width?: number;
height?: number;
marginTop?: number;
marginLeft?: number;
marginRight?: number;
marginBottom?: number;
color?: string;
backgroundColor?: string;
backgroundUrl?: string;
}
export interface cssMethods {
method: Array<cssMethod>;
}
export interface cssMethod {
cssName: string;
result: string | number | Function | boolean;
}
export declare const cssMethod: {
width: (value: any) => {
width: any;
};
height: (value: any) => {
height: any;
};
color: (value: any) => {
color: any;
};
autoFlex: (value: any) => {};
animation: (value: any) => {
animation: any;
};
animationDelay: (value: any) => {
animationDelay: any;
};
fontSize: (value: any) => {
fontSize: string;
};
};
export default cssList;