Skip to content

Commit

Permalink
Add console helper
Browse files Browse the repository at this point in the history
  • Loading branch information
achainjere authored and Jérémy ACHAIN committed Oct 5, 2023
1 parent 1180e37 commit d198d77
Show file tree
Hide file tree
Showing 18 changed files with 52 additions and 4,711 deletions.
5 changes: 4 additions & 1 deletion lib/helpers/console.helper.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import { LogInterface } from '../models/index.js';
export declare abstract class ConsoleHelper {
static group(parent: LogInterface | string | any, children: (LogInterface | string | any)[], colors?: string[]): void;
static log(title: string, style: string, isGroup?: boolean, ...data: any[]): void;
static logBlue(title: string, ...data: any[]): void;
static logGreen(title: string, ...data: any[]): void;
static logGrey(title: string, ...data: any[]): void;
static logRed(title: string, ...data: any[]): void;
private static format;
}
//# sourceMappingURL=console.helper.d.ts.map
2 changes: 1 addition & 1 deletion lib/helpers/console.helper.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lib/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export * from './helpers/index.js';
export * from './managers/index.js';
export * from './models/index.js';
export * from './tools/index.js';
//# sourceMappingURL=index.d.ts.map
2 changes: 1 addition & 1 deletion lib/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/index.min.mjs

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions lib/managers/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export * from './smart-loader.js';
//# sourceMappingURL=index.d.ts.map
1 change: 1 addition & 0 deletions lib/managers/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions lib/managers/smart-loader.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export {};
//# sourceMappingURL=smart-loader.d.ts.map
1 change: 1 addition & 0 deletions lib/managers/smart-loader.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions lib/models/console.const.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export declare const CONSOLE_LOG_STYLES: {
blue: string;
grey: string;
green: string;
red: string;
};
//# sourceMappingURL=console.const.d.ts.map
1 change: 1 addition & 0 deletions lib/models/console.const.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lib/models/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export * from './console.const.js';
export * from './console.interface.js';
export * from './value.const.js';
export * from './value.type.js';
Expand Down
2 changes: 1 addition & 1 deletion lib/models/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d198d77

Please sign in to comment.