index.d.ts 351 Bytes
Newer Older
1 2
import React from 'react';
export interface GlobalFooterProps {
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
  className?: string;
12 13
}

14
export default class GlobalFooter extends React.Component<GlobalFooterProps, any> {}