any-rule/src/interface.d.ts

13 lines
228 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[];
2020-02-21 01:17:23 +08:00
}
export interface Rule{
title:string,
rule:RegExp,
examples:string[]
2020-01-03 00:15:54 +08:00
}