UNPKG

@mcma/core

Version:

Node module with type definitions and helper utils for the EBU MCMA framework

9 lines (8 loc) 367 B
import { McmaObject, McmaObjectProperties } from "./mcma-object"; export interface NotificationEndpointProperties extends McmaObjectProperties { httpEndpoint: string; } export declare class NotificationEndpoint extends McmaObject implements NotificationEndpointProperties { httpEndpoint: string; constructor(properties: NotificationEndpointProperties); }