UNPKG

@progress/kendo-angular-upload

Version:

Kendo UI Angular Upload Component

17 lines (16 loc) 636 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ChunkInfo } from './chunk-info'; /** * @hidden */ export declare class ChunkMap { private _files; constructor(); add(uid: string, totalChunks: number): ChunkInfo; remove(uid: string): void; has(uid: string): boolean; get(uid: string): ChunkInfo; }