Type alias FolderType

FolderType: {
    activeModules: string[];
    defaultModule: string;
    description: string;
    label: string;
    name: string;
    preferredWebParts: FolderTypeWebParts[];
    requiredWebParts: FolderTypeWebParts[];
    workbookType: boolean;
}

Type declaration

  • activeModules: string[]

    Array of module names that are automatically active for this folder type

  • defaultModule: string

    Name of the module that provides the home screen for this folder type

  • description: string

    Short description of the folder type

  • label: string

    Name that's shown to the user for this folder type

  • name: string

    Cross-version stable name of the folder type

  • preferredWebParts: FolderTypeWebParts[]

    Array of web parts that are part of this folder type but may be removed

  • requiredWebParts: FolderTypeWebParts[]

    Array of web parts that are part of this folder type and cannot be removed

  • workbookType: boolean

    Indicates if this is specifically intended to use as a workbook type

Generated using TypeDoc