How to use the phovea_core/src/provenance.action function in phovea_core

To help you get started, we’ve selected a few phovea_core examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Caleydo / ordino / src / lineup / scorecmds.ts View on Github external
export function addScore(provider:IObjectRef, scoreId: string, params: any) {
  return action(meta('Add Score', cat.data, op.create), CMD_ADD_SCORE, addScoreImpl, [provider], {
    id: scoreId,
    params
  });
}