The export interface ICreatePageProps is defining the structure of the properties that can be passed when creating a new clientside page. It has three properties:

interface ICreatePageProps {
    Layout?: SharepointAPI.Pages.ClientsidePageLayoutType;
    Name: string;
    Title?: string;
}

Properties

Properties

Name: string
Title?: string