UNPKG

@scalar/api-client

Version:

the open source API testing client

10 lines 377 B
import type { MaybeRefOrGetter } from 'vue'; /** * Vue class prop type * * Vue seems to just use any behind the scenes * * @see https://vuejs.org/guide/essentials/class-and-style.html#class-and-style-bindings */ export type VueClassProp = MaybeRefOrGetter<string | Record<string, boolean> | (string | Record<string, boolean>)[] | false>; //# sourceMappingURL=vue.d.ts.map