Skip to content

Commit

Permalink
Add "none" to type HeaderModeType. (#2998)
Browse files Browse the repository at this point in the history
The documentation specifies that `none` is an acceptable `HeaderModeType`.
  • Loading branch information
charles-salmon authored and aksonov committed Apr 24, 2018
1 parent 0587eca commit 21117ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ interface TabSceneProps extends React.Props<Scene> {
tabBarLabel?: string;
}
interface SceneStatic extends React.ComponentClass<SceneProps & TabsProps & TabSceneProps & DrawerProps & ModalProps> { }
export type HeaderModeType = "float" | "screen";
export type HeaderModeType = "float" | "screen" | "none";

// Tabs
export var Tabs: TabsStatic;
Expand Down

0 comments on commit 21117ce

Please sign in to comment.