forked from OpenEnergyTools/open-scd-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfoundation.ts
40 lines (32 loc) · 920 Bytes
/
foundation.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import { LitElement } from 'lit';
/** Constructor type for defining `LitElement` mixins. */
export type LitElementConstructor = new (...args: any[]) => LitElement;
export { newOpenEvent } from './foundation/open-event.js';
export type { OpenEvent, OpenDetail } from './foundation/open-event.js';
export {
isNamespaced,
isUpdate,
newEditEventV1,
} from './foundation/edit-event-v1.js';
export type {
Edit,
EditEvent,
Update,
AttributeValue,
NamespacedAttributeValue,
} from './foundation/edit-event-v1.js';
export type {
EditEventV2,
EditEventOptions,
EditDetailV2,
} from './foundation/edit-event-v2.js';
export { isRemove, isInsert } from '@openenergytools/xml-lib';
export type {
Insert,
Remove,
SetAttributes,
SetTextContent,
EditV2,
} from '@openenergytools/xml-lib';
export { newEditEvent } from './foundation/edit-event.js';
export { cyrb64 } from './foundation/cyrb64.js';