UNPKG

@logic-pad/core

Version:
20 lines (19 loc) 441 B
import Instruction from '../instruction.js'; export default class Rule extends Instruction { searchVariant() { return { description: this.explanation, rule: this, }; } modeVariant(_mode) { return this; } /** * Whether only one instance of this rule is allowed in a grid. */ get isSingleton() { return false; } } export const instance = undefined;