/** * Defines the necessary information to generate app source related values for the solution */ import type { ILocalizedString } from '@microsoft/sp-module-interfaces'; /** * For the list of categories see response for https://partner.microsoft.com/en-us/dashboard/office/products/00000000-0000-0000-0000-000000000000/properties * where 00000000-0000-0000-0000-000000000000 should be replaced with a valid application guid from the partner center * @public */ export type SolutionCategories = 'Accounting + Finance' | 'Collaboration' | 'Content management' | 'CRM' | 'Data + analytics' | 'File managers' | 'IT/admin' | 'Legal + HR' | 'News + weather' | 'Productivity' | 'Project management' | 'Reference' | 'Sales + marketing' | 'Site Design' | 'Social' | 'Workflow & Process Management'; /** * @internal */ export declare const MAX_SOLUTION_CATEGORIES_COUNT: number; /** * @public */ interface ISolutionMetadata { shortDescription?: ILocalizedString; longDescription?: ILocalizedString; screenshotPaths?: string[]; videoUrl?: string; categories?: SolutionCategories[]; } export default ISolutionMetadata; //# sourceMappingURL=ISolutionMetadata.d.ts.map