style(table): Type like Interface must be started by uppercase letter

This commit is contained in:
Denis Malinochkin
2017-12-07 19:32:05 +03:00
parent 5eca1afe91
commit 9a4cffa5e7
+2 -2
View File
@@ -4,7 +4,7 @@
// mrmlnc <https://github.com/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;