Sha256: 726608bc3768d1b3e668c5e0a06ef74f07eecc4f55475406f29fb8ce872493f2
Contents?: true
Size: 479 Bytes
Versions: 26
Compression:
Stored size: 479 Bytes
Contents
import { EventPolyfill } from './EventPolyfill' export class ProgressEventPolyfill extends EventPolyfill { readonly lengthComputable: boolean readonly composed: boolean readonly loaded: number readonly total: number constructor(type: string, init?: ProgressEventInit) { super(type) this.lengthComputable = init?.lengthComputable || false this.composed = init?.composed || false this.loaded = init?.loaded || 0 this.total = init?.total || 0 } }
Version data entries
26 entries across 26 versions & 1 rubygems