@mcma/core
Advanced tools
Comparing version 0.10.0 to 0.11.0
@@ -1,9 +0,7 @@ | ||
import { McmaObject } from "./mcma-object"; | ||
import { McmaObject, McmaObjectProperties } from "./mcma-object"; | ||
export declare class JobParameterBag extends McmaObject { | ||
[key: string]: any; | ||
constructor(properties?: { | ||
[key: string]: any; | ||
}); | ||
constructor(properties?: McmaObjectProperties); | ||
get<T>(key: string): T; | ||
set<T>(key: string, value: T): this; | ||
} |
export interface McmaObjectProperties { | ||
["@type"]?: string; | ||
[key: string]: any; | ||
@@ -3,0 +4,0 @@ } |
{ | ||
"name": "@mcma/core", | ||
"version": "0.10.0", | ||
"version": "0.11.0", | ||
"description": "Node module with type definitions and helper utils for the EBU MCMA framework", | ||
@@ -5,0 +5,0 @@ "engines": { |
# mcma-core | ||
Node module with type definitions and helper utils for the EBU MCMA framework |
46091
1161