tering-serieuze-types 1.0.0

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.
Files changed (2) hide show
  1. package/index.d.ts +17 -0
  2. package/package.json +12 -0
package/index.d.ts ADDED
@@ -0,0 +1,17 @@
1
+ export type FlicButtonPayload = {
2
+ bdAddr: string;
3
+ }
4
+
5
+ export type FlicButtonClickPayload = FlicButtonPayload & {
6
+ clickType: string;
7
+ }
8
+
9
+ export type FlicButtonBatteryPayload = FlicButtonPayload & {
10
+ batteryStatus: number;
11
+ }
12
+
13
+ export type BrandweerPayload = {
14
+ title: string,
15
+ description: string,
16
+ pubDate: Date
17
+ }
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "tering-serieuze-types",
3
+ "version": "1.0.0",
4
+ "description": "Tering serieuze types",
5
+ "main": "",
6
+ "author": "Frank",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://gitlab.com/tering-serieuze-shit/tering-serieuze-types.git"
10
+ },
11
+ "types": "index.d.ts"
12
+ }