@mcma/core
Version:
Node module with type definitions and helper utils for the EBU MCMA framework
17 lines (16 loc) • 455 B
TypeScript
import { McmaObject, McmaObjectProperties } from "./mcma-object";
export interface McmaTrackerProperties extends McmaObjectProperties {
id: string;
label: string;
custom?: {
[key: string]: string;
};
}
export declare class McmaTracker extends McmaObject implements McmaTrackerProperties {
id: string;
label: string;
custom?: {
[key: string]: string;
};
constructor(properties: McmaTrackerProperties);
}