rubika 1.0.1 → 1.0.2

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/src/index.ts +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rubika",
3
- "version": "1.0.01",
3
+ "version": "1.0.2",
4
4
  "author": "Hadi Rostami",
5
5
  "main": "src/index.ts",
6
6
  "description": "A modern library for Rubika built with Bun.",
package/src/index.ts CHANGED
@@ -2,7 +2,8 @@ import Bot from "./bot";
2
2
  import Utils from "./utils";
3
3
  import Filters from "./filters";
4
4
  import type * as Enums from "./types/enums";
5
+ import { Update, InlineMessage } from "./types/interfaces";
5
6
 
6
7
  export default Bot;
7
8
  export { Bot, Filters, Utils };
8
- export type { Enums };
9
+ export type { Enums, Update, InlineMessage };