-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added
spaceSize
option to increase spacing between columns 🪐 (#10)
* Added `spaceSize` option to increase the space between cells 🪐 * Added a TypeScript definition 👽 * Added documentation for spaceSize 🌌 * Rename type definition file to index 📇 * Prepare release 🚀
- Loading branch information
Showing
5 changed files
with
38 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
interface SpaceLogConfig { | ||
columnKeys: Array<string> | ||
headings?: Array<string> | ||
spaceSize?: number | ||
} | ||
|
||
interface SpaceLogDataItem { | ||
[key: string]: any | ||
} | ||
|
||
declare function spaceLog(config: SpaceLogConfig, data: Array<SpaceLogDataItem>): void | ||
|
||
export { spaceLog } | ||
export default spaceLog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters