Skip to content
View hasparus's full-sized avatar

Sponsors

@beekeeb

Organizations

@EpicGames @WrocTypeScript @system-ui
Block or Report

Block or report hasparus

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. system-ui/theme-ui system-ui/theme-ui Public

    Build consistent, themeable React apps based on constraint-based design principles

    TypeScript 5.3k 672

  2. dethcrypto/TypeChain dethcrypto/TypeChain Public

    🔌 TypeScript bindings for Ethereum smart contracts

    TypeScript 2.7k 357

  3. dethcrypto/dethcode dethcrypto/dethcode Public

    View source of deployed Ethereum contracts in VSCode

    TypeScript 1.4k 105

  4. slash-cli slash-cli Public

    🔪 A CLI for sindresorhus/slash

    JavaScript 1 1

  5. lightweight sum type matching in typ... lightweight sum type matching in typescript
    1
    interface A { type: 'A', a: 10 };
    2
    interface B { type: 'B', b: [11] };
    3
    type AB = A | B;
    4
    
                  
    5
    type TypeOf<T extends { type: any }> = T extends { type: infer Type } ? Type : never;
  6. DefinitelyTyped/DefinitelyTyped DefinitelyTyped/DefinitelyTyped Public

    The repository for high quality TypeScript type definitions.

    TypeScript 47.9k 30k