Skip to content

Commit

Permalink
fix(node): missing export for QuestionType
Browse files Browse the repository at this point in the history
  • Loading branch information
kirinnee committed Nov 8, 2023
1 parent 3baacb2 commit 7a72f25
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions sdks/node/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ import type {
CyanProcessorInput,
} from "./domain/core/cyan_script_model.js";
import type { Cyan, CyanGlob } from "./domain/core/cyan.js";
import { GlobType } from "./domain/core/cyan.js";
import type { ProcessorOutput } from "./domain/processor/output.js";
import type { PluginOutput } from "./domain/plugin/output.js";
import type {
Expand All @@ -54,7 +55,7 @@ import type {
SelectQ,
TextQ,
} from "./domain/core/question.js";
import { GlobType } from "./domain/core/cyan.js";
import { QuestionType } from "./domain/core/question.js";

function createApp(): Application {
const app = express();
Expand Down Expand Up @@ -185,10 +186,11 @@ export {
StartPlugin,
StartPluginWithLambda,
CyanFileHelper,
GlobType,
QuestionType,
};

export type {
GlobType,
ICyanTemplate,
ICyanExtension,
ICyanProcessor,
Expand Down

0 comments on commit 7a72f25

Please sign in to comment.