Skip to content
Snippets Groups Projects
Select Git revision
  • e655386bc74311b1bcaf97fc382e833801981077
  • master default protected
  • e-infra2
  • ci-megalinter-speedup
  • egi-fixes
  • e-infra
  • envri-hub-new-aai
  • egi-b2drop-no-collapse
  • lfs
  • gpu_staging
  • resurrect-testing-ownloud
  • experiments/collab
  • update_claim_group_keys
  • envri-hub
  • enable_rtc
  • eosc-ui
  • future/jupyterhub-5.x
  • versioning
  • eosc-templating
  • staging1-raw-image
  • token-exchange
21 results

notebooks-terms-of-use.html

Blame
  • helpers.d.ts 638 B
    /**
     * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
     *
     * @author Alexander Rose <alexander.rose@weirdbyte.de>
     * @author David Sehnal <david.sehnal@gmail.com>
     */
    
    declare module Helpers {
        export type Mutable<T> = {
            -readonly [P in keyof T]: T[P]
        }
        export type TypedArray = Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array
        export type NumberArray = TypedArray | number[]
        export type UintArray = Uint8Array | Uint16Array | Uint32Array | number[]
        export type ValueOf<T> = T[keyof T]
    }