UNPKG

@vonage/video

Version:

Package to interact with the Vonage Video API (Not OpenTok Compatible)

18 lines (15 loc) 436 B
import { SingleArchiveResponse } from './SingleArchiveResponse.mjs'; /** * Represents a response containing multiple archive items. */ type MultiArchiveResponse = { /** * The count of archive items in the response. */ count: number; /** * An array of SingleArchiveResponse objects representing individual archive items. */ items: SingleArchiveResponse[]; }; export type { MultiArchiveResponse };