vuestic-ui
Version:
Vue 3 UI Framework
8 lines (7 loc) • 407 B
TypeScript
import { ComponentInternalInstance, Ref } from 'vue';
import { Props } from './shared';
/**
* @param propsFromConfig Ref of custom props. Required to be ref so vue can rerender component on custom props change.
* @returns new props object, where some props replaced with props from config.
*/
export declare const createProps: (instance: ComponentInternalInstance, propsFromConfig: Ref<Props>) => Props;