Skip to content
View erwinv's full-sized avatar
Block or Report

Block or report erwinv

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 Loading

  1. yaffu yaffu Public

    Yet Another FFmpeg Util

    TypeScript 2

  2. hacker-news hacker-news Public

    TypeScript

  3. videoconference-app videoconference-app Public

    TypeScript

  4. demo-hapi demo-hapi Public

    TypeScript

  5. TypeScript Variadic Tuples for typin... TypeScript Variadic Tuples for typing `promisify`
    1
    type Tuple<T=any> = readonly T[]
    2
    type Nullable<T> = T extends null | undefined ? T : T | null | undefined
    3
    type ErrorFirstCallback<E extends Error, R> = (err: Nullable<E>, result: R) => void
    4
    type Resolve<R> = (value: R | PromiseLike<R>) => void
    5
    type Reject<E extends Error> = (reason: Nullable<E>) => void
  6. propine-cli propine-cli Public

    CLI app for Propine Engineering Interview: https://gist.github.com/liangzan/4436cb8b083c66b3517e7f4d80939f06

    TypeScript