UNPKG

cvat-sdk

Version:

CVAT SDK is a Javascript library. It provides you access to Javascript functions and objects that simplify server interaction and provide additional functionality like data validation and serialization.

8 lines (7 loc) 246 B
import type { WebhookDeliveryRead } from './webhook-delivery-read'; export interface PaginatedWebhookDeliveryReadList { 'count': number; 'next'?: string | null; 'previous'?: string | null; 'results': Array<WebhookDeliveryRead>; }