supMDX-page/dist/Footer.d.ts

11 lines
223 B
TypeScript
Raw Normal View History

2023-02-17 04:22:18 +09:00
/// <reference types="react" />
2023-02-16 00:03:53 +09:00
export type FooterConfig = {
site: {
startYear?: number;
author: string;
};
};
export declare function Footer({ config }: {
config: FooterConfig;
}): JSX.Element;