@veltdev/sdk 1.0.5 → 1.0.7
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/app/client/snippyly.model.d.ts +5 -0
- package/package.json +1 -1
- package/velt.js +2 -2
|
@@ -138,4 +138,9 @@ export declare class Snippyly {
|
|
|
138
138
|
* To remove snippyly specific content from provided html content.
|
|
139
139
|
*/
|
|
140
140
|
removeSnippylyContent: (htmlContent: string) => string;
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* To remove velt specific content from provided html content.
|
|
144
|
+
*/
|
|
145
|
+
removeVeltContent: (htmlContent: string) => string;
|
|
141
146
|
}
|