@alauda/ui
Version:
Angular UI components by Alauda Frontend Team.
16 lines (15 loc) • 427 B
TypeScript
import { ValueOf } from '../internal/types';
export declare const TabSize: {
/** 卡片级尺寸 */
readonly Large: "large";
/** 页面级尺寸 */
readonly Medium: "medium";
/** 小尺寸 */
readonly Small: "small";
};
export type TabSize = ValueOf<typeof TabSize>;
export declare const TabType: {
readonly Line: "line";
readonly Card: "card";
};
export type TabType = ValueOf<typeof TabType>;