Type alias LDMigrationResult<TResult>

LDMigrationResult<TResult>: {
    origin: LDMigrationOrigin;
    result: TResult;
    success: true;
} | {
    error: any;
    origin: LDMigrationOrigin;
    success: false;
}

Result of a component of an LDMigration.

Should not need to be used by a consumer of this API directly.

Type Parameters

  • TResult

Type declaration

Type declaration

Generated using TypeDoc