redoc/typings/styled-patch.d.ts

23 lines
638 B
TypeScript
Raw Normal View History

import * as styledComponents from 'styled-components';
// FIXME
declare module 'styled-components' {
interface ThemedStyledComponentsModule<T> {
keyframes(
strings: TemplateStringsArray | string[],
...interpolations: SimpleInterpolation[]
): Keyframes;
}
2019-03-11 18:08:29 +03:00
export interface BaseThemedCssFunction<T extends object> {
<P extends object>(
first:
| TemplateStringsArray
| CSSObject
| InterpolationFunction<ThemedStyledProps<P, T>>
| string[],
...interpolations: Array<Interpolation<ThemedStyledProps<P, T>>>
): FlattenInterpolation<ThemedStyledProps<P, T>>;
}
}