index.d.ts 322 Bytes
Newer Older
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
1
import * as React from "react";
2
export interface GlobalFooterProps {
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 12 13 14 15
}

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