logic-rule
Version:
Logical rules
16 lines (15 loc) • 437 B
TypeScript
import "./lib/promise.auto.js";
import AndRule from "./AndRule";
import NotRule from "./NotRule";
import OnlyRule from "./OnlyRule";
import OrRule from "./OrRule";
import Rule from "./Rule";
export { Rule, AndRule, OrRule, NotRule, OnlyRule };
declare const _default: {
Rule: typeof Rule;
AndRule: typeof AndRule;
OrRule: typeof OrRule;
NotRule: typeof NotRule;
OnlyRule: typeof OnlyRule;
};
export default _default;