@pronto-tools-and-more/components 15.3.0 → 15.4.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.
package/dist/main.js
CHANGED
@@ -1063,6 +1063,11 @@ var getPinterestUserUrl = (username) => {
|
|
1063
1063
|
return `https://ch.pinterest.com/${username}`;
|
1064
1064
|
};
|
1065
1065
|
|
1066
|
+
// src/parts/GetThreadsUserUrl/GetThreadsUserUrl.ts
|
1067
|
+
var getThreadsUserUrl = (username) => {
|
1068
|
+
return `https://www.threads.com/${username}`;
|
1069
|
+
};
|
1070
|
+
|
1066
1071
|
// src/parts/GetTwitterShareUrl/GetTwitterShareUrl.ts
|
1067
1072
|
var getTwitterShareUrl = ({ url }) => {
|
1068
1073
|
return `https://twitter.com/intent/tweet?text=${url}`;
|
@@ -2271,6 +2276,7 @@ export {
|
|
2271
2276
|
getLinkedInUserUrl,
|
2272
2277
|
getLinkedinShareUrl,
|
2273
2278
|
getPinterestUserUrl,
|
2279
|
+
getThreadsUserUrl,
|
2274
2280
|
getTwitterShareUrl,
|
2275
2281
|
getTwitterUserUrl,
|
2276
2282
|
getYoutubeUserUrl,
|
@@ -31,6 +31,7 @@ export * from "../GetInstagramUserUrl/GetInstagramUserUrl.ts";
|
|
31
31
|
export * from "../GetLinkedinShareUrl/GetLinkedinShareUrl.ts";
|
32
32
|
export * from "../GetLinkedInUserUrl/GetLinkedInUserUrl.ts";
|
33
33
|
export * from "../GetPinterestUserUrl/GetPinterestUserUrl.ts";
|
34
|
+
export * from "../GetThreadsUserUrl/GetThreadsUserUrl.ts";
|
34
35
|
export * from "../GetTwitterShareUrl/GetTwitterShareUrl.ts";
|
35
36
|
export * from "../GetTwitterUserUrl/GetTwitterUserUrl.ts";
|
36
37
|
export * from "../GetYoutubeUserUrl/GetYoutubeUserUrl.ts";
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const getThreadsUserUrl: (username: string) => string;
|