dochub-sdk 0.1.249 → 0.1.250
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/interfaces/objects.ts +2 -2
- package/package.json +1 -1
package/interfaces/objects.ts
CHANGED
@@ -61,7 +61,7 @@ export interface IDocHubObjectEditorContext extends IDocHubObjectMeta {
|
|
61
61
|
[key: string]: any; // Произвольные ключи и значения
|
62
62
|
}
|
63
63
|
|
64
|
-
export enum
|
64
|
+
export enum DocHubObjectAppletSerializationFormat {
|
65
65
|
svg = 'svg'
|
66
66
|
}
|
67
67
|
|
@@ -76,7 +76,7 @@ export interface IDocHubObjectApplet {
|
|
76
76
|
* Формат вывода svg
|
77
77
|
*/
|
78
78
|
makeSymbol(options?:IDocHubObjectAppletSymbolOptions): Promise<string>;
|
79
|
-
serialization(format:
|
79
|
+
serialization(format: DocHubObjectAppletSerializationFormat): Promise<IDocHubProtocolResponse>;
|
80
80
|
}
|
81
81
|
|
82
82
|
// Интерфейс доступа к задекларированным объектам в DataLake
|