index.d.ts 336 Bytes
Newer Older
jim's avatar
jim committed
1
import * as React from 'react';
jim's avatar
jim committed
2
export interface IGlobalFooterProps {
jim's avatar
jim committed
3
  links?: Array<{
4
    key?: string;
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
5
    title: React.ReactNode;
6 7 8
    href: string;
    blankTarget?: boolean;
  }>;
jim's avatar
jim committed
9 10
  copyright?: React.ReactNode;
  style?: React.CSSProperties;
11 12
}

jim's avatar
jim committed
13
export default class GlobalFooter extends React.Component<IGlobalFooterProps, any> {}