buzzcasting-storage 2.12.1 → 2.12.3
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.
- package/dist/buzzcasting-storage.d.ts +14 -0
- package/dist/buzzcasting-storage.esm.js +489 -462
- package/package.json +1 -1
|
@@ -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[];
|
|
@@ -374,6 +384,10 @@ export declare enum MODERATION {
|
|
|
374
384
|
|
|
375
385
|
export declare function numberFormatter(num: number, digits: number): string;
|
|
376
386
|
|
|
387
|
+
export declare function rtl(message: IMessage): {
|
|
388
|
+
[key: string]: string;
|
|
389
|
+
};
|
|
390
|
+
|
|
377
391
|
export declare function shuffleMessages(messages: IMessage[]): IMessage[];
|
|
378
392
|
|
|
379
393
|
export declare enum STORAGE {
|