comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
16 lines (14 loc) • 417 B
TypeScript
import { Component, ExtractPropTypes, PropType } from 'vue';
type link = {
content?: string;
icon?: Component;
href?: string;
blankTarget?: boolean;
};
export declare const webFooterProps: {
readonly underline: BooleanConstructor;
readonly links: PropType<link[]>;
readonly copyright: StringConstructor;
};
export type WebFooterProps = ExtractPropTypes<typeof webFooterProps>;
export {};