UNPKG

@mikezimm/fps-core-v7

Version:

Library of reusable core interfaces, types and constants migrated from fps-library-v2

27 lines 900 B
/** * IFPSSubsSearchCleanItem is used in IFPSWebsWithLogo which is the type of object to be return with typical link info like Title, Desc, Path, Logo * - Also includes some commonly used properties which are duplicates but standard for some web parts like PivotTiles and Hub Connections */ export interface IFPSSubsSearchCleanItem { GroupId: string; Title: string; SiteId: string; WebId: string; DepartmentId: string; Path: string; Description: string; PictureThumbnailURL: string; SiteLogo: string; WebTemplate: string; ViewsLifeTime: number; ViewsRecent: number; contentclass: string; ParentLink: undefined | string; ServerRelativeUrl: string; imageUrl: string; title: string; href: string; description: string; sourceType: string; } //# sourceMappingURL=IFPSSubsSearchCleanItem.d.ts.map