@cmk/fe_utils
Version:
frontend utility library
18 lines (17 loc) • 379 B
TypeScript
export declare enum HTML_BORDER_STYLES {
Solid = "solid",
Dashed = "dashed",
Dotted = "dotted",
Double = "double",
Groove = "groove",
Ridge = "ridge",
Inset = "inset",
Outset = "outset",
None = "none",
Hidden = "hidden"
}
export declare const HTML_BORDER_STYLES_OPTIONS: {
value: string;
label: string;
textLabel: string;
}[];