mirror of
https://github.com/whyour/qinglong.git
synced 2026-09-21 18:08:20 +08:00
14 lines
463 B
TypeScript
14 lines
463 B
TypeScript
/**
|
|
* Storage compatibility entrypoint for development tooling. Deployment Profile
|
|
* packages must import /runtime or /migration explicitly so executable DDL is
|
|
* not pulled into a long-lived process by accident.
|
|
*/
|
|
export * from '../runtime/runtimeDatabase';
|
|
export {
|
|
localSqliteMigrationDefinition,
|
|
localSqliteMigrationManifest,
|
|
migrateLocalSqliteDatabase,
|
|
migrateLocalSqlitePath,
|
|
type LocalSqliteMigrationResult,
|
|
} from '../migration/migration';
|