stackexchange-api
Version:
A Node.js wrapper for the StackExchange API
16 lines (15 loc) • 601 B
TypeScript
import { Site } from './Site';
import { TypeMigrationInfo } from '../interfaces/result-types/TypeMigrationInfo';
/**
* The equivalent of [Type migration_info](https://api.stackexchange.com/docs/types/migration-info).<br>
* This object represents a [[Question]]'s migration to or from a different [[Site]] in the [Stack Exchange network](https://stackexchange.com/sites).
*/
export declare class MigrationInfo {
onDate: Date | null;
otherSite: Site | null;
/**
* Refers to a [[Question]]
*/
questionId: number | null;
constructor(migration_info?: TypeMigrationInfo);
}