react-web-native-sketch
Version:
[TODO: We need an overview of how this can be used via npm vs as a local package]
26 lines (25 loc) • 707 B
TypeScript
export declare const getStyleProps: (style?: string | number | Object | (string | number | Object)[] | undefined) => {
style: {
display: string;
};
className: string;
} | {
style: {
constructor: Function;
toString(): string;
toLocaleString(): string;
valueOf(): Object;
hasOwnProperty(v: string | number | symbol): boolean;
isPrototypeOf(v: Object): boolean;
propertyIsEnumerable(v: string | number | symbol): boolean;
display: string;
};
className?: undefined;
};
export declare const getMuiTheme: (appTheme: any) => {
typography: {};
palette: {
primary: any;
secondary: any;
};
};