BotFramework-WebChat
BotFramework-WebChat copied to clipboard
Fully type out `AdaptiveCardsPackage.ts`
Feature Request
Currently, in packages/bundle/src/types/AdaptiveCardsPackage.ts, we are only re-exporting types that Web Chat is interested.
We should fully export the whole typing for Adaptive Cards package, include Versions which is used by PVA.
type AdaptiveCardsPackage = {
AdaptiveCard: typeof AdaptiveCard;
GlobalSettings: typeof GlobalSettings;
HorizontalAlignment: typeof HorizontalAlignment;
HostConfig: typeof HostConfig;
TextSize: typeof TextSize;
TextWeight: typeof TextWeight;
SerializationContext: typeof SerializationContext;
Version: typeof Version;
};
export default AdaptiveCardsPackage;
[feature-request]