/** * Method used to decorate a given object (publicAPI+model) with vtkProgressHandler characteristics. * * @param publicAPI object on which methods will be bounds (public) * @param model object on which data structure will be bounds (protected) * @param {IProgressHandlerInitialValues} [initialValues] (default: {}) */ exportfunctionextend( publicAPI: object, model: object, initialValues?: IProgressHandlerInitialValues ): void;
/** * Method used to create a new instance of vtkProgressHandler * @param {IProgressHandlerInitialValues} [initialValues] for pre-setting some of its content */ exportfunctionnewInstance( initialValues?: IProgressHandlerInitialValues ): vtkProgressHandler;
/** * vtkProgressHandler stores dataset topologies as an explicit connectivity table * listing the point ids that make up each cell. * * @seevtkDataArray */ export declare constvtkProgressHandler: { newInstance: typeof newInstance; extend: typeof extend; }; exportdefault vtkProgressHandler;