index.d.ts 225 Bytes
Newer Older
jim's avatar
jim committed
1
import * as React from 'react';
jim's avatar
jim committed
2
export interface IFooterToolbarProps {
3
  extra: React.ReactNode;
jim's avatar
jim committed
4
  style?: React.CSSProperties;
5 6 7
}

export default class FooterToolbar extends React.Component<
jim's avatar
jim committed
8
  IFooterToolbarProps,
9 10
  any
> {}