UNPKG

comic-plus

Version:

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

10 lines (8 loc) 278 B
import { InjectionKey, Ref, ComputedRef } from 'vue'; import { RateProps } from './main.props'; export type RateProvide = { props: RateProps; activeIdx: Ref<number>; activeColor: ComputedRef<string>; }; export declare const RATE_PROVIDE: InjectionKey<RateProvide>;