Skip to content

Commit

Permalink
fix: export testYuki dsl function
Browse files Browse the repository at this point in the history
  • Loading branch information
JonoAugustine committed May 23, 2023
1 parent ed66d34 commit 5dc0307
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ import {
Command,
CommandBuilder,
RouteConfig,
testYuki,
} from "./logic"
import { User } from "./models"

export { yuki }
export { yuki, testYuki }
export default yuki
export type {
TestYuki,
Expand Down
2 changes: 2 additions & 0 deletions src/logic/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import {
GoogleConfig,
TestYuki,
RouteConfig,
testYuki,
} from "./yuki"
import { TokenBin } from "./tokenization"
import { Command, CommandBuilder } from "./commands"
Expand All @@ -21,4 +22,5 @@ export {
CommandBuilder,
Command,
RouteConfig,
testYuki,
}
3 changes: 2 additions & 1 deletion src/logic/yuki/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Yuki from "./Yuki"
import TestYuki from "./TestYuki"
import YukiBuilder, { yuki } from "./YukiBuilder"
import YukiBuilder, { yuki, testYuki } from "./YukiBuilder"
import { YukiConfig, GoogleConfig, RouteConfig } from "./BaseYuki"

export {
Expand All @@ -11,4 +11,5 @@ export {
YukiConfig,
GoogleConfig,
RouteConfig,
testYuki,
}

0 comments on commit 5dc0307

Please sign in to comment.