flex-area-grid
Version:
5 lines (4 loc) • 457 B
TypeScript
declare type TFlexCommon = "inherit" | "initial" | "unset";
export declare type TFlexAlign = TFlexCommon | "flex-start" | "flex-end" | "center" | "baseline" | "stretch";
export declare type TFlexJustify = TFlexCommon | "center" | "start" | "end" | "flex-start" | "flex-end" | "left" | "right" | "baseline" | "first baseline" | "last baseline" | "space-between" | "space-around" | "space-evenly" | "stretch" | "safe center" | "unsafe center";
export {};