any-rule/src/interface.d.ts

7 lines
145 B
TypeScript
Raw Normal View History

2020-01-03 00:15:54 +08:00
export interface IRule {
title: string;
keywords?: string[];
regex?: RegExp | string;
rules?: IRule[];
examples?: string[];
}