buzzcasting-storage 2.12.1 → 2.12.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11,6 +11,8 @@ export declare enum API {
11
11
 
12
12
  export declare type ApiData = ISeries & IMessages & ICloud;
13
13
 
14
+ export declare function attachedMedia(message: IMessage): IAttachedMedia;
15
+
14
16
  export declare function attrs(attributes: NamedNodeMap): any;
15
17
 
16
18
  export declare function brandLogo(channel: string, size: string): string;
@@ -129,6 +131,14 @@ export declare function filterAttributes(attributes: NamedNodeMap): IFilteredAtt
129
131
 
130
132
  export declare function formatContent(message: IMessage): string;
131
133
 
134
+ declare interface IAttachedMedia {
135
+ image?: string;
136
+ background: {
137
+ backgroundimage?: string;
138
+ } | null;
139
+ video?: string;
140
+ }
141
+
132
142
  export declare interface ICategory {
133
143
  type: string;
134
144
  data: string[];