Skip to content

Commit

Permalink
Add missing semicolon πŸ’
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick91 committed Jun 6, 2017
1 parent a9c6708 commit bd432d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions typings/styled-components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ export type SvgStyledFunction<E extends SVGElement> = ThemedSvgStyledFunction<E,

type ThemedStyledComponentFactoriesHTML<T> = {
[K in keyof HTMLTags]: ThemedHtmlStyledFunction<HTMLTags[K], T>;
}
};

type ThemedStyledComponentFactoriesSVG<T> = {
[K in keyof SVGTags]: ThemedSvgStyledFunction<SVGTags[K], T>;
}
};

type ThemedStyledComponentFactories<T> = ThemedStyledComponentFactoriesHTML<T> & ThemedStyledComponentFactoriesHTML<T>;

Expand Down

0 comments on commit bd432d3

Please sign in to comment.