Skip to content
View riivanov's full-sized avatar

Block or report riivanov

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. generic-social-network generic-social-network Public

    TypeScript

  2. armageddon armageddon Public

    NASA API integration to detect near earth asteroids

    TypeScript 1

  3. riivanov.github.io riivanov.github.io Public

    Homepage

    TypeScript 1

  4. vscode-settings-install vscode-settings-install Public

    installs vscode settings.json, keybinding.json, and extensions; for band new installs of vscode

    Shell 1

  5. Recursive Type Example Recursive Type Example
    1
    type DeepReadonlyObject<T> = { readonly [K in keyof T]: DeepReadonly<T[K]> };
    2
    
                  
    3
    type DeepReadonly<T> = T extends (infer E)[] ?
    4
        ReadonlyArray<ReadonlyArray<DeepReadonlyObject<E>>> :
    5
      T extends object ? DeepReadonlyObject<T> :