UNPKG

@tvkitchen/countertop

Version:

The entry point for developers who want to set up a TV Kitchen.

14 lines (13 loc) 475 B
/// <reference types="node" /> import type { JSONSchemaType } from 'ajv'; import type { PayloadType } from './PayloadType'; export interface PayloadParameters { data: Buffer; type: PayloadType | string; createdAt?: string; origin: string; duration: number; position: number; } export declare const payloadParametersSchema: JSONSchemaType<PayloadParameters>; export declare const isPayloadParameters: import("ajv").ValidateFunction<PayloadParameters>;