Optional
additionalThe additionalSettings?: Record<string, any>;
property in the IViewCreateProps
interface is
defining an optional property named additionalSettings
.
Optional
PersonalThe PersonalView?: boolean;
property in the IViewCreateProps
interface is defining an optional
property named PersonalView
of type boolean
.
The Title: string;
is defining a property named Title
in the IViewCreateProps
interface.
This property is of type string
, which means it can only hold string values. It represents the
title of the view that will be created in SharePoint.
The
export interface IViewCreateProps
is defining the structure of an object that represents the properties needed to create a new view in SharePoint. It has three properties: