@popclip/types 1.4670.0 → 1.4675.0

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/popclip.d.ts +1 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@popclip/types",
3
- "version": "1.4670.0",
3
+ "version": "1.4675.0",
4
4
  "devDependencies": {
5
5
  "typedoc": "0.25.13",
6
6
  "typescript": "5.4.5"
package/popclip.d.ts CHANGED
@@ -1003,7 +1003,7 @@ interface PopClip {
1003
1003
  *
1004
1004
  * The list of available sharing services is determined by the user's system configuration.
1005
1005
  *
1006
- * @param serviceName The name of the sharing service to use. Available names can be found by calling {@link util.sharingServicesInfo}.
1006
+ * @param serviceName The name of the sharing service to use.
1007
1007
  * @param items An array of items to share. Each item can be a string, a {@link RichString} object, or a {@link UrlObject}.
1008
1008
  * @throws If the service name is not recognized, or if the service cannot handle the supplied items, an error is thrown.
1009
1009
  */
@@ -1046,11 +1046,6 @@ interface Util {
1046
1046
  daylightSaving: boolean;
1047
1047
  };
1048
1048
 
1049
- /**
1050
- * Get infomation about available sharing services for {@link popclip.share}.
1051
- */
1052
- sharingServicesInfo: string;
1053
-
1054
1049
  htmlToRtf(html: string): string | undefined;
1055
1050
 
1056
1051
  /**