10 lines
191 B
TypeScript
10 lines
191 B
TypeScript
|
export type FooterConfig = {
|
||
|
site: {
|
||
|
startYear?: number;
|
||
|
author: string;
|
||
|
};
|
||
|
};
|
||
|
export declare function Footer({ config }: {
|
||
|
config: FooterConfig;
|
||
|
}): JSX.Element;
|