Skip to content

Instantly share code, notes, and snippets.

@Iamsheye
Created May 19, 2025 23:42
Show Gist options
  • Save Iamsheye/b7e167410e017a5d26a0db0ddd3f31c6 to your computer and use it in GitHub Desktop.
Save Iamsheye/b7e167410e017a5d26a0db0ddd3f31c6 to your computer and use it in GitHub Desktop.

Revisions

  1. Iamsheye created this gist May 19, 2025.
    3 changes: 3 additions & 0 deletions prettify-type.ts
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,3 @@
    type Prettify<T> = {
    [K in keyof T]: T[K];
    } & {}