mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 19:07:08 +00:00
Fix parameter types of padders
This commit is contained in:
parent
a5496bc364
commit
60d9ffa196
6
easy-table/easy-table.d.ts
vendored
6
easy-table/easy-table.d.ts
vendored
@ -23,7 +23,7 @@ declare module "easy-table"
|
||||
* @param {String} ch
|
||||
* @returns {Function}
|
||||
*/
|
||||
public static leftPadder<T>(ch: number): CellPrinter<T>;
|
||||
public static leftPadder<T>(ch: string): CellPrinter<T>;
|
||||
|
||||
public static padLeft: CellPrinter<string>;
|
||||
|
||||
@ -33,9 +33,9 @@ declare module "easy-table"
|
||||
* @param {String} ch
|
||||
* @returns {Function}
|
||||
*/
|
||||
public static rightPadder<T>(ch: number): CellPrinter<T>;
|
||||
public static rightPadder<T>(ch: string): CellPrinter<T>;
|
||||
|
||||
public static padRight: CellPrinter<string>;
|
||||
// public static padRight: CellPrinter<string>;
|
||||
|
||||
/**
|
||||
* Create a printer for numbers
|
||||
|
||||
Loading…
Reference in New Issue
Block a user