/** * A list of asset files which will be automatically included. * These are expected to be exist in the sharepointAssetDir. * * @public */ export interface ISharepointAssets { /** * A list of element filenames. * Any supported files that accompany the element manifest will be an element file. * For example, the list instance schema is an element manifest that is associated with a * list instance that is defined in an element manifest. */ elementManifests?: T[]; /** * A list of element manifest filenames. */ elementFiles?: T[]; /** * A list of upgrade action filenames */ upgradeActions?: T[]; } //# sourceMappingURL=ISharepointAssets.d.ts.map