@mcma/core
Version:
Node module with type definitions and helper utils for the EBU MCMA framework
9 lines (8 loc) • 367 B
TypeScript
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);
}