(exposed?: Exposed)
| 179 | * @see {@link https://vuejs.org/api/sfc-script-setup.html#defineexpose} |
| 180 | */ |
| 181 | export function defineExpose< |
| 182 | Exposed extends Record<string, any> = Record<string, any>, |
| 183 | >(exposed?: Exposed): void { |
| 184 | if (__DEV__) { |
| 185 | warnRuntimeUsage(`defineExpose`) |
| 186 | } |
| 187 | } |
| 188 | |
| 189 | /** |
| 190 | * Vue `<script setup>` compiler macro for declaring a component's additional |
no test coverage detected