diff --git a/types/table/index.d.ts b/types/table/index.d.ts index 383715a37e..fd39eb42c4 100644 --- a/types/table/index.d.ts +++ b/types/table/index.d.ts @@ -4,7 +4,7 @@ // mrmlnc // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped -export type borderType = 'honeywell' | 'norc' | 'ramac' | 'void'; +export type BorderType = 'honeywell' | 'norc' | 'ramac' | 'void'; export interface ColumnConfig { alignment?: string; @@ -48,4 +48,4 @@ export function table(data: any[], userConfig?: TableUserConfig): string; export function createStream(userConfig: TableUserConfig): { write: string[] }; -export function getBorderCharacters(templateName: borderType): JoinStruct; +export function getBorderCharacters(templateName: BorderType): JoinStruct;