import { ActionConfig } from '../../ActionConfig'; import { Store } from '../../utils/Store'; export const actionConfigStore = new Store(() => new ActionConfig()); export function isAction(act: object): boolean { return actionConfigStore.has(act.constructor); }