From 9a4cffa5e7e639dfd7c075f05fefe4d02a388bff Mon Sep 17 00:00:00 2001 From: Denis Malinochkin Date: Thu, 7 Dec 2017 19:32:05 +0300 Subject: [PATCH] style(table): Type like Interface must be started by uppercase letter --- types/table/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;