Optional
DescriptionThe Description?: string;
property in the ICreateWebsProps
interface is an optional property
that can be used when creating a new web in SharePoint. It allows you to provide a description for
the web. The Description
property is of type string
, and you can provide a description for the
web as a string value. If you don't provide a description, the property is optional and can be
left undefined.
Optional
LanguageThe Language?: number;
property in the ICreateWebsProps
interface is an optional property that
can be used when creating a new web in SharePoint. It allows you to specify the language of the
web using a language code. The Language
property is of type number
, which represents the
language code. By providing a language code, you can set the language of the web to a specific
language.
The Title: string;
is a property in the ICreateWebsProps
interface. It specifies that the
Title
property should be of type string
. This property is used when creating a new web in
SharePoint and represents the title or name of the web.
The Url: string;
property in the ICreateWebsProps
interface is used to specify the URL of the
web when creating a new web in SharePoint. It represents the address or location where the web
will be accessible.
Optional
UseThe UseSamePermissionsAsParentSite?: boolean;
property in the ICreateWebsProps
interface is an
optional property that can be used when creating a new web in SharePoint.
Optional
WebThe WebTemplate?: string;
property in the ICreateWebsProps
interface is an optional property
that can be used when creating a new web in SharePoint. It allows you to specify the web template
to be used for the new web. The WebTemplate
property is of type string
, and you can provide
the template name or ID as a string value. By specifying a web template, you can define the
structure and functionality of the new web based on a predefined template.
The
export interface ICreateWebsProps
defines the structure of the properties that can be passed to thecreate
method of theIQueryWebs
interface. It specifies the required propertiesTitle
andUrl
, which are both of typestring
. It also includes optional properties such asDescription
,WebTemplate
,Language
, andUseSamePermissionsAsParentSite
, which have their respective types specified. These properties can be used to provide additional information when creating a new web in SharePoint.