Files
manolia-alpha/node_modules/buetify/lib/composables/labelId/useLabelId.d.ts
Robin COuret e0e50af706 init component
2026-02-16 17:28:37 +01:00

15 lines
512 B
TypeScript
Executable File

import { PropType, ExtractPropTypes } from 'vue';
export declare const UseLabelIdPropsDefinition: {
labelFor: PropType<string>;
label: {
type: PropType<string>;
default: string;
};
};
export declare type UseLabelIdProps = ExtractPropTypes<typeof UseLabelIdPropsDefinition>;
export declare function useLabelId(props: UseLabelIdProps, prefix: string): {
id: import("vue").ComputedRef<string>;
labelId: import("vue").ComputedRef<string>;
label: import("vue").Ref<string>;
};