UNPKG

@tplc/wot

Version:

10 lines (7 loc) 294 B
import type { ExtractPropTypes } from 'vue' import { baseProps, makeRequiredProp, makeStringProp } from '../common/props' export const indexAnchorProps = { ...baseProps, index: makeRequiredProp([String, Number]), } export type IndexAnchorProps = ExtractPropTypes<typeof indexAnchorProps>