Contract encapsulating parameters for the page move operation.

interface WikiPageMoveParameters {
    newOrder?: number;
    newPath?: string;
    path?: string;
}

Hierarchy (View Summary)

Properties

newOrder?: number

New order of the wiki page.

newPath?: string

New path of the wiki page.

path?: string

Current path of the wiki page.