mirror of
https://github.com/al0cam/AutoMover.git
synced 2026-07-22 12:10:26 +00:00
13 lines
290 B
TypeScript
13 lines
290 B
TypeScript
/**
|
|
* Defines the Exlclusion rules that will jump over the folders defined in the regex
|
|
*/
|
|
export class ExclusionRule {
|
|
/**
|
|
* This filed is used for defining the regex with its group matchers
|
|
*/
|
|
public regex: string;
|
|
|
|
constructor(regex?: string) {
|
|
this.regex = regex || "";
|
|
}
|
|
}
|