Magic progress

This commit is contained in:
n1073645 2019-12-02 15:47:02 +00:00
parent 9f3b185f77
commit 40c7e63046
5 changed files with 199 additions and 73 deletions

View file

@ -0,0 +1,15 @@
/**
*
*/
class magicObject {
/**
*
* @param inRegexes
* @param outRegexes
*/
constructor (inRegexes = null, outRegexes = null) {
this.inRegexes = inRegexes;
this.outRegexes = outRegexes;
}
} export default magicObject;