1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| export { createBaukasten } from "./baukasten";
| export type { Baukasten, BaukastenOptions } from "./baukasten";
|
| // Re-export the stable domain types + constants so consumers import everything
| // from "@dh-software/baukasten" only.
| export {
| GLOBAL_CUSTOMER_NUMBER,
| CUSTOMER_NUMBER_PATTERN,
| } from "@dh-software/baukasten-types";
| export type {
| CustomerNumber,
| JsonValue,
| AccessPermission,
| FileInfoEntry,
| FileInfo,
| ResolvedPermission,
| ConfigurationEntry,
| ConfigurationReference,
| ConfigurationLocation,
| ResolvedConfiguration,
| StoreMembershipResolver,
| } from "@dh-software/baukasten-types";
|
|