Interface RawCopiedTemplateRow

Represents a row in the {{copied}} template. These should represent their actual values instead of raw parameters from the template.

interface RawCopiedTemplateRow {
    afd?: string;
    date?: string;
    diff?: string;
    from?: string;
    from_oldid?: string;
    merge?: string;
    to?: string;
    to_diff?: string;
    to_oldid?: string;
}

Implemented by

Properties

afd?: string

Whether or not this copy was made from the results of an AfD discussion.

date?: string

The date when the copy was performed.

diff?: string

The URL of the copying diff. Overrides to_diff and to_oldid.

from?: string

The original article.

from_oldid?: string

The revision ID from which the content was copied from.

merge?: string

Whether or not this copy was made from the results of a merge discussion.

to?: string

The article that content was copied into.

to_diff?: string

The revision number of the copying diff.

to_oldid?: string

The oldid of the copying diff (for multiple edits).