UNPKG

@mcma/core

Version:

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

11 lines (10 loc) 361 B
import { McmaObject, McmaObjectProperties } from "./mcma-object"; export interface NotificationProperties extends McmaObjectProperties { source?: string; content: any; } export declare class Notification extends McmaObject implements NotificationProperties { source?: string; content: any; constructor(properties: NotificationProperties); }