abstract class XcPluginMigration { public abstract up(): Promise; public abstract down(): Promise; } export default XcPluginMigration