collect-system/packages/tus/src/utils/models/Context.ts

15 lines
514 B
TypeScript
Raw Normal View History

2025-01-06 08:45:23 +08:00
/**
* CancellationContext接口
*
*
* 使
* - /
* -
* -
*/
export interface CancellationContext {
signal: AbortSignal
abort: () => void
cancel: () => void
}