column-alignment.d.ts 240 B

12345
  1. //#region ../../packages/constants/column-alignment.d.ts
  2. declare const columnAlignment: readonly ["left", "center", "right"];
  3. type ColumnAlignment = (typeof columnAlignment)[number];
  4. //#endregion
  5. export { ColumnAlignment, columnAlignment };