版博士V2.0程序
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ProgressEvent.d.ts 421 B

1234567891011121314151617
  1. import Event from '../Event';
  2. import IProgressEventInit from './IProgressEventInit';
  3. /**
  4. *
  5. */
  6. export default class ProgressEvent extends Event {
  7. readonly lengthComputable: boolean;
  8. readonly loaded: number;
  9. readonly total: number;
  10. /**
  11. * Constructor.
  12. *
  13. * @param type Event type.
  14. * @param [eventInit] Event init.
  15. */
  16. constructor(type: string, eventInit?: IProgressEventInit);
  17. }