UNPKG

@eang/core

Version:

eang - model driven enterprise event processing

11 lines 281 B
import { Obj } from '../entity.js'; export class SystemObj extends Obj { typeOf = 'System'; constructor(opts) { super({ ...opts, typeOf: 'System' }); } } export function isSystemObj(obj) { return obj.typeOf === 'System'; } //# sourceMappingURL=system.js.map