-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
26 lines (19 loc) · 980 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import {UserStory} from "@src/stories/stories.ts";
import {StoryScript} from "@src/stories/story-types.ts";
import {DomainDef, DomainObjectsDef, UserDomain, DomainEntity, DomainEvent, DomainCommand} from "@src/stories/interfaces.ts";
// import and export entrance as Acts or A
import * as entrance from "./entrance.ts";
import {CommonScences, CommonTest, customizeCommonTests} from "./commons.ts";
import {TestKind} from "@src/stories/stories.ts";
import { TestKinds } from "./stories/test-kinds.ts";
// Re-export entrance methods
export * from "./entrance.ts";
// Export entrance as Cantos or C
export {entrance as Cantos, entrance as C};
// Export types for story
export type {StoryScript, UserStory, DomainObjectsDef, DomainDef, UserDomain, DomainEntity, DomainEvent, DomainCommand}
// export Common Test helpers
export {CommonScences as CS, CommonTest as CT, CommonScences, CommonTest, customizeCommonTests}
// export TestKind
export type {TestKind}
export {TestKinds}