Skip to content
View erwinv's full-sized avatar

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 Public

    Yet Another FFmpeg Util

    TypeScript 2 1

  2. hacker-news Public

    TypeScript

  3. videoconference-app Public

    TypeScript

  4. demo-hapi Public

    TypeScript

  5. TypeScript Variadic Tuples for typin...
    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 Public

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

    TypeScript