DefinitelyTyped/types/react-tabs-redux/TabLink.d.ts
2019-03-23 17:42:23 +05:00

20 lines
511 B
TypeScript

import * as React from 'react';
export interface TabLinkProps {
to: number | string;
component?: string;
handleSelect?: (tab: string, name: string) => void;
onClick?: (event: Event) => void;
children?: React.ReactNode;
isActive?: boolean;
namespace?: string;
activeStyle?: object;
disableInlineStyles?: boolean;
className?: string;
activeClassName?: string;
style?: object;
default?: boolean;
}
export class TabLink extends React.Component<TabLinkProps> {}