Skip to content
View hasparus's full-sized avatar

Sponsors

@beekeeb

Organizations

@EpicGames @WrocTypeScript @system-ui
Block or Report

Block or report hasparus

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse

Pinned

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

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

    TypeScript 5.2k 671

  2. dethcrypto/TypeChain dethcrypto/TypeChain Public

    🔌 TypeScript bindings for Ethereum smart contracts

    TypeScript 2.7k 352

  3. dethcrypto/dethcode dethcrypto/dethcode Public

    View source of deployed Ethereum contracts in VSCode

    TypeScript 1.3k 103

  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.1k 29.8k