cloggi 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +23 -0
- package/package.json +1 -1
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
declare class ClogBuilder {
|
|
2
|
+
private _color;
|
|
3
|
+
private _modifier;
|
|
4
|
+
private _print;
|
|
5
|
+
get red(): this;
|
|
6
|
+
get green(): this;
|
|
7
|
+
get yellow(): this;
|
|
8
|
+
get blue(): this;
|
|
9
|
+
get magenta(): this;
|
|
10
|
+
get cyan(): this;
|
|
11
|
+
get white(): this;
|
|
12
|
+
bold(text: string): this;
|
|
13
|
+
italic(text: string): this;
|
|
14
|
+
underline(text: string): this;
|
|
15
|
+
strikethrough(text: string): this;
|
|
16
|
+
dim(text: string): this;
|
|
17
|
+
blink(text: string): this;
|
|
18
|
+
inverse(text: string): this;
|
|
19
|
+
hidden(text: string): this;
|
|
20
|
+
log(text: string): this;
|
|
21
|
+
}
|
|
22
|
+
export declare const cloggi: ClogBuilder;
|
|
23
|
+
export {};
|