33 lines
588 B
TypeScript
33 lines
588 B
TypeScript
|
export type BorderType =
|
||
|
| "nil"
|
||
|
| "none"
|
||
|
| "single"
|
||
|
| "thick"
|
||
|
| "double"
|
||
|
| "dotted"
|
||
|
| "dashed"
|
||
|
| "dotDash"
|
||
|
| "dotDotDash"
|
||
|
| "triple"
|
||
|
| "thinThickSmallGap"
|
||
|
| "thickThinSmallGap"
|
||
|
| "thinThickThinSmallGap"
|
||
|
| "thinThickMediumGap"
|
||
|
| "thickThinMediumGap"
|
||
|
| "thinThickThinMediumGap"
|
||
|
| "thinThickLargeGap"
|
||
|
| "thickThinLargeGap"
|
||
|
| "thinThickThinLargeGap"
|
||
|
| "wave"
|
||
|
| "doubleWave"
|
||
|
| "dashSmallGap"
|
||
|
| "dashDotStroked"
|
||
|
| "threeDEmboss"
|
||
|
| "threeDEngrave"
|
||
|
| "outset"
|
||
|
| "inset"
|
||
|
| "apples"
|
||
|
| "archedScallops"
|
||
|
| "babyPacifier"
|
||
|
| "babyRattle";
|