UNPKG

@magic-mustard/sqlsync

Version:

SQLSync simplifies database schema evolution by allowing a declarative approach to table management

16 lines (15 loc) 509 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Parser = void 0; var Parser; (function (Parser) { class AbstractProcessor { constructor(file, migrations, state, contentBetweenFlags) { this.file = file; this.migrations = migrations; this.state = state; this.contentBetweenFlags = contentBetweenFlags; } } Parser.AbstractProcessor = AbstractProcessor; })(Parser || (exports.Parser = Parser = {}));