vuestic-ui
Version:
Vue 3 UI Framework
10 lines (9 loc) • 462 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 createSlots: (instance: ComponentInternalInstance, propsFromConfig: Ref<Props>) => {
[name: string]: import("vue").Slot<any> | undefined;
};