Remove last any

This commit is contained in:
Cameron Little
2017-08-15 18:51:10 -07:00
committed by GitHub
parent 0dfb13e10f
commit b0dc5d6b26
+1 -1
View File
@@ -8,7 +8,7 @@
import * as React from 'react';
export type Renderable = React.ComponentType<any> | JSX.Element;
export type Renderable = React.ComponentType | JSX.Element;
export type RenderFunction = () => Renderable;
export type StoryDecorator = (story: RenderFunction, context: { kind: string, story: string }) => Renderable | null;