vuestic-ui
Version:
Vue 3 UI Framework
12 lines (11 loc) • 366 B
TypeScript
import { DefineEmits, DefineProps } from '../utils/types/composable-props';
export type StatefulProps<ModelValue = any> = DefineProps<{
stateful?: boolean;
modelValue?: ModelValue;
}>;
export type StatefulEmits<ModelValue = any> = DefineEmits<{
'update:modelValue': [ModelValue];
}>;
export declare const statefulPropsDefaults: {
stateful: false;
};