Skip to content

Commit

Permalink
fix(typings): fix Modal mountnode -> mountNode (#1153)
Browse files Browse the repository at this point in the history
  • Loading branch information
levithomason committed Jan 13, 2017
1 parent dfe89d3 commit 92d58aa
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/modules/Modal/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { SemanticSIZES } from '../..';
import * as React from 'react';

interface ModalProps {

/** An element type to render as (string or function). */
as?: any;

Expand Down Expand Up @@ -59,7 +59,7 @@ interface ModalProps {
open?: boolean;

/** The node where the modal should mount.. */
mountnode?: any;
mountNode?: any;

/** A modal can vary in size */
size?: SemanticSIZES;
Expand All @@ -76,7 +76,7 @@ interface ModalClass extends React.ComponentClass<ModalProps> {
export const Modal: ModalClass;

interface ModalHeaderProps {

/** An element type to render as (string or function). */
as?: any;

Expand All @@ -90,7 +90,7 @@ interface ModalHeaderProps {
export const ModalHeader: React.ComponentClass<ModalHeaderProps>;

interface ModalContentProps {

/** An element type to render as (string or function). */
as?: any;

Expand All @@ -107,7 +107,7 @@ interface ModalContentProps {
export const ModalContent: React.ComponentClass<ModalContentProps>;

interface ModalDescriptionProps {

/** An element type to render as (string or function). */
as?: any;

Expand All @@ -121,7 +121,7 @@ interface ModalDescriptionProps {
export const ModalDescription: React.ComponentClass<ModalDescriptionProps>;

interface ModalActionsProps {

/** An element type to render as (string or function). */
as?: any;

Expand Down

0 comments on commit 92d58aa

Please sign in to comment.