1
0
Fork 0

Exporting work from bea

This commit is contained in:
joostdecock 2018-07-10 12:20:53 +00:00
parent d80287c8f8
commit 145272c546
17 changed files with 232 additions and 1952 deletions

10
dist/lib/pattern.js vendored Normal file
View file

@ -0,0 +1,10 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var Pattern = /** @class */ (function () {
function Pattern(config) {
this.config = config;
return this;
}
return Pattern;
}());
exports.default = Pattern;