UNPKG

supa-seed

Version:

A constraint-aware, framework-agnostic database seeding framework with deep PostgreSQL business logic discovery and MakerKit integration support

24 lines 560 B
"use strict"; /** * Template Validator - Stub Implementation * This is a placeholder for future functionality */ Object.defineProperty(exports, "__esModule", { value: true }); exports.TemplateValidator = void 0; class TemplateValidator { constructor() { // Stub implementation } validate(template) { return { valid: true }; } runTests(testSuite) { return { valid: true }; } } exports.TemplateValidator = TemplateValidator; //# sourceMappingURL=template-validator.js.map