14 lines
422 B
TypeScript
14 lines
422 B
TypeScript
export interface IEmployeeSpotlightWebPartProps {
|
|
description: string;
|
|
spotlightSiteCollectionURL: string;
|
|
spotlightSiteURL: string;
|
|
spotlightListName: string;
|
|
spotlightEmployeeEmailColumn: string;
|
|
spotlightEmployeeExpirationDateColumn: string;
|
|
spotlightBGColor:string;
|
|
spotlightFontColor:string;
|
|
spotlightDescriptionColumn: string;
|
|
spotlightSliderSpeed: number;
|
|
enabledSpotlightAutoPlay: boolean;
|
|
}
|