Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Note
The Retail Interest Group by Dynamics 365 Commerce has moved from Yammer to Viva Engage. If you don't have access to the new Viva Engage community, fill out this form (https://aka.ms/JoinD365commerceVivaEngageCommunity) to be added and stay engaged in the latest discussions.
This article describes the module props.autogenerated.ts file in Microsoft Dynamics 365 Commerce.
The props.autogenerated.ts file is an automatically generated TypeScript file for a module. Don't manually change it. If you add new configuration values to the module definition file and module data files, the build process automatically creates this file with the appropriate interfaces.
Example
The following example shows the props.autogenerated.ts file for a module.
/**
* Copyright (c) 2018 Microsoft Corporation
* IProductFeature contentModule Interface Properties
* THIS FILE IS AUTO-GENERATED - MANUAL MODIFICATIONS WILL BE LOST
*/
import * as Msdyn365 from '@msdyn365-commerce/core';
export const enum imageAlignment {
left = 'left',
right = 'right'
}
export interface IProductFeatureConfig extends Msdyn365.IModuleConfig {
imageAlignment?: imageAlignment;
productTitle?: string;
productDetails?: Msdyn365.RichText;
productImage?: Msdyn365.IImageData;
buttonText?: string;
productIds?: string;
}
export interface IProductFeatureResources {
resourceKey: string;
}
export interface IProductFeatureProps<T> extends Msdyn365.IModule<T> {
resources: IProductFeatureResources;
config: IProductFeatureConfig;
}