7 lines
231 B
TypeScript
7 lines
231 B
TypeScript
|
|
import IEventInit from '../IEventInit.js';
|
||
|
|
export default interface IProgressEventInit extends IEventInit {
|
||
|
|
lengthComputable?: boolean;
|
||
|
|
loaded?: number;
|
||
|
|
total?: number;
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=IProgressEventInit.d.ts.map
|