UNPKG

@mcma/core

Version:

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

11 lines (10 loc) 354 B
import { McmaObject, McmaObjectProperties } from "./mcma-object"; export interface JobParameterBagProperties extends McmaObjectProperties { [key: string]: any; } export declare class JobParameterBag extends McmaObject implements JobParameterBagProperties { [key: string]: any; constructor(properties?: { [key: string]: any; }); }