/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { EntityTypeMigrationSpec } from './EntityTypeMigrationSpec'; /** * Metadata to describe the migration of nodes * @export * @interface MigrationSpec */ export interface MigrationSpec { /** * * @type {Array} * @memberof MigrationSpec */ migrationMetadata?: Array; } /** * Check if a given object implements the MigrationSpec interface. */ export declare function instanceOfMigrationSpec(value: object): value is MigrationSpec; export declare function MigrationSpecFromJSON(json: any): MigrationSpec; export declare function MigrationSpecFromJSONTyped(json: any, ignoreDiscriminator: boolean): MigrationSpec; export declare function MigrationSpecToJSON(json: any): MigrationSpec; export declare function MigrationSpecToJSONTyped(value?: MigrationSpec | null, ignoreDiscriminator?: boolean): any;