UNPKG

office-addin-manifest

Version:
29 lines (28 loc) 697 B
export declare class DefaultSettings { sourceLocation?: string; requestedWidth?: string; requestedHeight?: string; } export declare enum ManifestType { JSON = "json", XML = "xml" } export declare class ManifestInfo { id?: string; allowSnapshot?: string; alternateId?: string; appDomains?: string[]; defaultLocale?: string; description?: string; displayName?: string; highResolutionIconUrl?: string; hosts?: string[]; iconUrl?: string; officeAppType?: string; permissions?: string; providerName?: string; supportUrl?: string; version?: string; manifestType?: ManifestType; defaultSettings?: DefaultSettings; }