mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-12 13:00:19 +00:00
fix(table): Use correct types
This commit is contained in:
Vendored
+3
-3
@@ -7,11 +7,11 @@
|
||||
export type BorderType = 'honeywell' | 'norc' | 'ramac' | 'void';
|
||||
|
||||
export interface ColumnConfig {
|
||||
alignment?: string;
|
||||
alignment?: 'left' | 'center' | 'right';
|
||||
width?: number;
|
||||
truncate?: number;
|
||||
paddingLeft?: string;
|
||||
paddingRight?: string;
|
||||
paddingLeft?: number;
|
||||
paddingRight?: number;
|
||||
}
|
||||
|
||||
export interface JoinStruct {
|
||||
|
||||
Reference in New Issue
Block a user