From 9c8c975c080e9c6a159ac89585ff0aebf9e95162 Mon Sep 17 00:00:00 2001 From: Danny Eldridge Date: Mon, 13 Jan 2025 20:36:06 -0800 Subject: [PATCH] refactor: export HorizontalAlignment type --- src/components/Table/SortableTable.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Table/SortableTable.d.ts b/src/components/Table/SortableTable.d.ts index 2d808c194..dd870db00 100644 --- a/src/components/Table/SortableTable.d.ts +++ b/src/components/Table/SortableTable.d.ts @@ -2,7 +2,7 @@ import * as React from 'react'; import { TableProps } from '../Table/Table'; import { HeaderProps } from './components/Header'; -type HorizontalAlignment = 'start' | 'center' | 'end'; +export type HorizontalAlignment = 'start' | 'center' | 'end'; export interface SortableColumn extends Omit { align?: HorizontalAlignment;