()
| 251 | * @see {@link https://vuejs.org/api/sfc-script-setup.html#defineslots} |
| 252 | */ |
| 253 | export function defineSlots< |
| 254 | S extends Record<string, any> = Record<string, any>, |
| 255 | >(): StrictUnwrapSlotsType<SlotsType<S>> { |
| 256 | if (__DEV__) { |
| 257 | warnRuntimeUsage(`defineSlots`) |
| 258 | } |
| 259 | return null as any |
| 260 | } |
| 261 | |
| 262 | export type ModelRef<T, M extends PropertyKey = string, G = T, S = T> = Ref< |
| 263 | G, |
no test coverage detected