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
| [ | |
| // ========================= | |
| // GLOBAL KEYBINDINGS | |
| // ========================= | |
| { | |
| "bindings": { | |
| // pane navigation | |
| "ctrl-h": "workspace::ActivatePaneLeft", | |
| "ctrl-l": "workspace::ActivatePaneRight", | |
| "ctrl-k": "workspace::ActivatePaneUp", |
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
| /** | |
| * Simplifies an object or array type recursively to its most basic representation. | |
| * | |
| * @example | |
| * // Complex nested type | |
| * type Complex = Array< | |
| * SerializeObject<{ | |
| * data: Array<SerializeObject<{ date: number } & { name: string } & { amount: number }>>; | |
| * metadata: { date: Date } & { name: string } & { amount: number }; | |
| * }> |
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
| [ | |
| { | |
| "name": "Aruba", | |
| "iso3": "ABW", | |
| "iso2": "AW", | |
| "numeric": "533", | |
| "iso3166-2": "ISO 3166-2:AW", | |
| "phonePrefix": "+297", | |
| "emoji": "🇦🇼", | |
| "currencyCode": "AWG", |