The ICreatePageOptions interface is defining the structure for the optional options parameter in the create method of the IQueryPages interface. It has a single property WelcomePage which is of type boolean. This property is used to specify whether the created page should be set as the welcome page for the site. If WelcomePage is set to true, the created page will be set as the welcome page. If WelcomePage is not provided or set to false, the created page will not be set as the welcome page.

interface ICreatePageOptions {
    WelcomePage?: boolean;
}

Properties

Properties

WelcomePage?: boolean