vuestic-ui
Version:
Vue 3 UI Framework
21 lines (20 loc) • 511 B
TypeScript
import { ExtractPropTypes } from 'vue';
export declare const useSidebarProps: {
color: {
type: StringConstructor;
default: string;
};
textColor: {
type: StringConstructor;
};
};
export declare const useSidebar: (props: ExtractPropTypes<typeof useSidebarProps>) => void;
export declare const useSidebarItem: () => ExtractPropTypes<{
color: {
type: StringConstructor;
default: string;
};
textColor: {
type: StringConstructor;
};
}>;