UNPKG

alcaeus-model

Version:

rdfine models for Alcaeus, Hydra client

14 lines (13 loc) 342 B
import { owl } from '@tpluscode/rdf-ns-builders'; export function NothingMixin(base) { class Nothing extends base { get title() { return 'Nothing'; } get description() { return 'Nothing'; } } return Nothing; } NothingMixin.shouldApply = (res) => owl.Nothing.equals(res.id);