/// /// /** * @package io.dcloud.uniapp.framework */ export class UniProgressActiveendEventDetail { curPercent: number constructor(value: number) } /** * @package io.dcloud.uniapp.framework */ export class UniProgressActiveendEvent extends UniCustomEvent { constructor(value: number) } /** * @package io.dcloud.uniapp.framework */ export interface UniProgressElement extends UniElement {} export let UniProgressElement: { prototype: UniProgressElement new (): UniProgressElement } export type ProgressActiveendEvent = UniProgressActiveendEvent export const ProgressActiveendEvent: typeof UniProgressActiveendEvent export type ProgressActiveendEventDetail = UniProgressActiveendEventDetail export const ProgressActiveendEventDetail: typeof UniProgressActiveendEventDetail