UNPKG

generator-begcode

Version:

Spring Boot + Angular/React/Vue in one handy generator

17 lines (13 loc) 647 B
import type { Entity } from '../base-application/index.js'; export type LiquibaseChangelog = { changelogName: string }; export type LiquibaseChangelogSection = LiquibaseChangelog & { section?: 'base' | 'incremental' | 'constraints' }; export type LiquibaseSourceType = { addLiquibaseChangelog?(changelog: LiquibaseChangelogSection): void; addLiquibaseIncrementalChangelog?(changelog: LiquibaseChangelog): void; addLiquibaseConstraintsChangelog?(changelog: LiquibaseChangelog): void; }; export type LiquibaseEntity = Entity & { anyRelationshipIsOwnerSide: boolean; liquibaseFakeData: Record<string, any>[]; fakeDataCount: number; };