One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
type Prettify<T> = | |
& { [K in keyof T]: T[K] } | |
& {}; | |
type KvConsistencyOptions = Parameters<Deno.Kv['get']>[1]; | |
interface MapTypedKv<K extends string, V extends unknown> { | |
delete(id: K): Promise<void>; | |
get(id: K, options?: KvConsistencyOptions): Promise<Deno.KvEntryMaybe<V>>; | |
getMany<T extends readonly unknown[]>( |
{ | |
// Disable telemetry | |
"telemetry.telemetryLevel": "off", | |
// Zen mode | |
"zenMode.fullScreen": false, | |
"zenMode.hideTabs": true, | |
"zenMode.centerLayout": false, | |
// Theming | |
"workbench.iconTheme": "city-lights-icons-vsc", | |
"editor.fontFamily": "Dank Mono", |