We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a2c5f14 + 8f8868d commit e14c97aCopy full SHA for e14c97a
3 files changed
package.json
@@ -36,7 +36,7 @@
36
"docs:build": "vitepress build docs",
37
"docs:preview": "vitepress preview docs"
38
},
39
- "version": "3.2.5",
+ "version": "3.2.6",
40
"devDependencies": {
41
"jest": "^29.5.0",
42
"vitepress": "^1.0.0-rc.44"
src/index.d.ts
@@ -0,0 +1,6 @@
1
+import IReddit from "./lib/reddit";
2
+
3
+export interface IMethods {
4
+ random: () => void;
5
+ reddit: (params: IReddit) => void;
6
+}
src/lib/reddit.d.ts
@@ -0,0 +1,7 @@
+interface IReddit {
+ locale: string;
+ customSubredditName: string;
+ fullRawBody: string
7
+export default IReddit;
0 commit comments