react-shields.io
Version:
react-shields.io ===
16 lines (15 loc) • 492 B
TypeScript
import { Component } from 'react';
import Issues from './Issues';
import Size from './Size';
import Downloads from './Downloads';
import Activity from './Activity';
import { BaseProps } from '../common/Base';
export interface GithubProps extends BaseProps {
}
export default class Github extends Component<GithubProps> {
static Issues: typeof Issues;
static Size: typeof Size;
static Activity: typeof Activity;
static Downloads: typeof Downloads;
render(): JSX.Element;
}