@mikezimm/fps-core-v7
Version:
Library of reusable core interfaces, types and constants migrated from fps-library-v2
19 lines • 827 B
TypeScript
import { IReactCSSProperties } from "../../types/react/IReactCSSTypes";
export interface ICurleyBraceCheck {
errMessage: string;
string: string;
parsed: IReactCSSProperties;
}
/**
* Created from BoxStyles in order to create IReactCSSProperties from strings.
* @param key - purely for error feedback
* @param value
*/
export declare function getReactCSSFromString(key: string, value: string | undefined, fallback: IReactCSSProperties, ignoreColors: boolean): ICurleyBraceCheck;
/**
* Copied from banner/component.tsx origilly in ECStorage project
* @param styleString
* @param fallback
*/
export declare function createStyleFromString(styleString: string, fallback: IReactCSSProperties, themeChoice: string, traceString: string): IReactCSSProperties;
//# sourceMappingURL=reactCSS.d.ts.map