10 lines
441 B
TypeScript
10 lines
441 B
TypeScript
import * as React from 'react';
|
|
import { TabsProps } from './index';
|
|
export default class TabBar extends React.Component<TabsProps> {
|
|
static defaultProps: {
|
|
animated: boolean;
|
|
type: string;
|
|
};
|
|
render(): React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>;
|
|
}
|