import type Client from 'models/Clients/Client' export default interface Migration { /** * timestamp in UTC */ date: number up(client: Client): Promise down?(client: Client): Promise }