@opentrainticketing/netex-deckplan-editor 1.0.6 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { type App } from 'vue';
|
|
2
2
|
import { parseNeTEx } from './helpers/parser';
|
|
3
|
+
import { type Availability, PassengerSpotAvailability } from './types/view/seats';
|
|
3
4
|
import '@/assets/lib.css';
|
|
4
5
|
declare function install(app: App): void;
|
|
5
6
|
declare const _default: {
|
|
@@ -8,4 +9,4 @@ declare const _default: {
|
|
|
8
9
|
export default _default;
|
|
9
10
|
export * from './components/editor';
|
|
10
11
|
export * from './components/renderer';
|
|
11
|
-
export { parseNeTEx };
|
|
12
|
+
export { parseNeTEx, type Availability, PassengerSpotAvailability };
|
|
@@ -10,7 +10,7 @@ declare const _default: {
|
|
|
10
10
|
required: true;
|
|
11
11
|
};
|
|
12
12
|
availability: {
|
|
13
|
-
type: import("vue").PropType<import("
|
|
13
|
+
type: import("vue").PropType<import("..").Availability>;
|
|
14
14
|
};
|
|
15
15
|
}>>;
|
|
16
16
|
parseNeTEx: (xml: string) => import("../types/netex/deckPlan").DeckPlan[];
|