fix: add missing type definition file
authorJérôme Benoit <jerome.benoit@sap.com>
Tue, 25 Apr 2023 21:59:58 +0000 (23:59 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Tue, 25 Apr 2023 21:59:58 +0000 (23:59 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/types/EvseStatus.ts [new file with mode: 0644]

diff --git a/src/types/EvseStatus.ts b/src/types/EvseStatus.ts
new file mode 100644 (file)
index 0000000..f12ff7c
--- /dev/null
@@ -0,0 +1,6 @@
+import type { AvailabilityType } from './internal';
+
+export type EvseStatus = {
+  connectorIds: number[];
+  availability: AvailabilityType;
+};