5 lines
240 B
TypeScript
5 lines
240 B
TypeScript
//#region ../../packages/constants/column-alignment.d.ts
|
|
declare const columnAlignment: readonly ["left", "center", "right"];
|
|
type ColumnAlignment = (typeof columnAlignment)[number];
|
|
//#endregion
|
|
export { ColumnAlignment, columnAlignment }; |