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.
- package/package.json +1 -1
- package/src/index.ts +2 -1
package/package.json
CHANGED
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 };
|