@vuesax-alpha/nightly
Version:
A Component Library for Vue 3
14 lines (13 loc) • 1.12 kB
TypeScript
import type { ExtractPropTypes } from 'vue';
import type Row from './row.vue';
export declare const RowJustify: readonly ["start", "center", "end", "space-around", "space-between", "space-evenly"];
export declare const RowAlign: readonly ["top", "middle", "bottom"];
export declare const RowDerection: readonly ["row", "row-reverse", "column", "column-reverse"];
export declare const rowProps: {
gutter: import("vuesax-alpha/es/utils").VsPropFinalized<NumberConstructor, unknown, unknown, number, boolean>;
justify: import("vuesax-alpha/es/utils").VsPropFinalized<StringConstructor, "space-around" | "space-between" | "space-evenly" | "center" | "end" | "start", unknown, string, boolean>;
direction: import("vuesax-alpha/es/utils").VsPropFinalized<StringConstructor, "column" | "column-reverse" | "row" | "row-reverse", unknown, string, boolean>;
align: import("vuesax-alpha/es/utils").VsPropFinalized<StringConstructor, "top" | "bottom" | "middle", unknown, string, boolean>;
};
export declare type RowProps = ExtractPropTypes<typeof rowProps>;
export declare type RowInstance = InstanceType<typeof Row>;