any-rule/src/interface.d.ts
2020-02-21 01:17:23 +08:00

13 lines
228 B
TypeScript

export interface IRule {
title: string;
keywords?: string[];
regex?: RegExp | string;
rules?: IRule[];
examples?: string[];
}
export interface Rule{
title:string,
rule:RegExp,
examples:string[]
}