@reputex/vue-widget
Version:
Vue widget by the ReputeX team for displaying ReputeX scores of users.
5 lines (4 loc) • 346 B
TypeScript
export interface InputProps<T> {
modelValue?: T;
}
export declare const defineContainer: <Props, VModelType = string | number | boolean>(name: string, defineCustomElement: any, componentProps?: string[], modelProp?: string, modelUpdateEvent?: string, externalModelUpdateEvent?: string) => (props: Props & InputProps<VModelType> & {}) => any;