Gesamte Mono-Repo des Baukastens (alle apps/clients, examples/tests und packages)
dh_heyart
vor 7 Std. 7b1747b3214ec3de482f775cede2649c26e836a9
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";