πΊπ¦
This file contains hidden or 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
| format = """ | |
| [β](bold green)$status$cmd_duration$fill | |
| [β ](bold green)$hostname$localip$time$nix_shell | |
| [β ](bold green)$java$kotlin$rust$golang$python | |
| [β ](bold green)$sudo$username$directory$package$git_branch$git_commit$git_state | |
| [ββ>](bold green) """ | |
| [fill] | |
| symbol = "β" |
This file contains hidden or 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
| interface Array<T> { | |
| map<U>( | |
| callbackfn: (value: T, index: number, array: T[]) => U, | |
| thisArg?: unknown | |
| ): { [K in keyof this]: U }; | |
| filter<S extends T>( | |
| callbackfn: (value: T, index: number, array: T[]) => value is S, | |
| thisArg?: unknown | |
| ): { [K in keyof this]-?: this[K] extends S ? S : never } | |
| } |
OlderNewer