index.d.ts 318 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<{
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
4
    title: React.ReactNode;
5 6 7
    href: string;
    blankTarget?: boolean;
  }>;
jim's avatar
jim committed
8 9
  copyright?: React.ReactNode;
  style?: React.CSSProperties;
10 11
}

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