UNPKG

91 BTypeScriptView Raw
1export default interface Migration {
2 up(): Promise<void>;
3 down(): Promise<void>;
4}