Skip to content

Instantly share code, notes, and snippets.

View ghana7989's full-sized avatar
💭
I may be slow to respond.

pavan ghana7989

💭
I may be slow to respond.
View GitHub Profile
@Alia5
Alia5 / cheatsheet.ts
Last active October 25, 2024 07:19
Advanced Typescript Cheatsheet
export type Await<T> = T extends PromiseLike<infer U> ? Await<U> : T;
export type IsPromise<T> = PromiseLike<infer U> ? true : false;
export type Length<T> = T extends { length: infer L } ? L : never;
export type KeysOfType<O, T> = {
[K in keyof O]: O[K] extends T ? K : never;
}[keyof O];
// ConvertLiterals would convert literal types like `1337` to their base type like `number` if set to true
@bradtraversy
bradtraversy / webdev_online_resources.md
Last active March 29, 2025 16:38
Online Resources For Web Developers (No Downloading)