UNPKG

@civ-clone/core-rule

Version:

This component contains the framework for `Rule`s. These are comprised of `Criterion`s and `Effect`s with optional `Priority`s.

6 lines (5 loc) 161 B
import Criteria from '../Criteria'; export declare class Or<C extends any[] = any[]> extends Criteria<C> { validate(...args: C): boolean; } export default Or;