index.d.ts 324 Bytes
Newer Older
ι™ˆεΈ…'s avatar
ι™ˆεΈ… 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 12
}

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