File size: 154 Bytes
4dbcbb6
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import type { ObjectId } from "mongodb";

export interface MigrationResult {
	_id: ObjectId;
	name: string;
	status: "success" | "failure" | "ongoing";
}