t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
11 lines (10 loc) • 421 B
TypeScript
import type { PropType, ExtractPropTypes } from 'vue';
import type { LayoutDirectionType } from './interface';
export declare const Props: {
readonly direction: {
readonly type: PropType<LayoutDirectionType>;
readonly default: () => LayoutDirectionType;
readonly validator: (val: LayoutDirectionType) => boolean;
};
};
export declare type LayoutPropsType = ExtractPropTypes<typeof Props>;