UNPKG

gatsby-openrpc-theme

Version:

A gatsby theme for generated OpenRPC documentation

17 lines 582 B
import React from 'react'; export interface FooterProps { footerLinks?: Array<{ name: string; link: string; }>; copyrightText?: string; copyrightYear?: number; organizationName?: string; organizationUrl?: string; builtWithText?: string; builtWithName?: string; builtWithUrl?: string; } declare const Footer: ({ footerLinks, copyrightYear, copyrightText, organizationName, organizationUrl, builtWithText, builtWithName, builtWithUrl, }: FooterProps) => React.JSX.Element; export default Footer; //# sourceMappingURL=Footer.d.ts.map