diff --git a/flow-typed/npm/styled-components_v5.x.x.js b/flow-typed/npm/styled-components_v5.x.x.js deleted file mode 100644 index e568703fb..000000000 --- a/flow-typed/npm/styled-components_v5.x.x.js +++ /dev/null @@ -1,525 +0,0 @@ -// flow-typed signature: 1f5de1a8acfb1cef787a7062bb304212 -// flow-typed version: 207fb32765/styled-components_v5.x.x/flow_>=v0.104.x - -// @flow - -declare module 'styled-components' { - declare class InterpolatableComponent
extends React$Component
{ - static +styledComponentId: string; - } - - declare export type Styles = { - [ruleOrSelector: string]: string | number, // | Styles, - ..., - }; - - declare export type Interpolation
=
- | ((
- executionContext: P
- ) => ((executionContext: P) => InterpolationBase) | InterpolationBase)
- | InterpolationBase;
-
- declare export type InterpolationBase =
- | CSSRules
- | KeyFrames
- | string
- | number
- | false // falsy values are OK, true is the only one not allowed, because it renders as "true"
- | null
- | void
- | Styles
- | Class