8 lines
153 B
TypeScript
8 lines
153 B
TypeScript
|
import { MigrationRepository } from "./migrations";
|
||
|
|
||
|
export interface Extensions {
|
||
|
migrations: MigrationRepository;
|
||
|
}
|
||
|
|
||
|
export { MigrationRepository };
|