UNPKG

comic-plus

Version:

<p align="center"> <img width="200px" src="./logo.png"/> </p>

24 lines (22 loc) 662 B
import { ExtractPropTypes } from 'vue'; export declare const anchorLinkProps: { readonly href: { readonly type: StringConstructor; readonly required: true; }; readonly title: StringConstructor; readonly underline: { readonly type: BooleanConstructor; readonly default: true; }; readonly offset: { readonly type: NumberConstructor; readonly default: 0; }; readonly duration: { readonly type: NumberConstructor; readonly default: 500; }; readonly anchorAnimation: BooleanConstructor; }; export type AnchorLinkProps = ExtractPropTypes<typeof anchorLinkProps>;