@hedia/types 2.1.47-alpha.1 → 2.1.47-alpha.3
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.
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { Logbook } from "../../logbook/logbook";
|
|
2
2
|
export declare namespace LogbookEvents {
|
|
3
|
-
interface
|
|
3
|
+
interface ICreateLogbook {
|
|
4
4
|
logbook: Logbook.Types.ILogbookEntry;
|
|
5
5
|
userId: number;
|
|
6
6
|
}
|
|
7
|
-
interface
|
|
7
|
+
interface IDeleteLogbook {
|
|
8
8
|
uuid: string;
|
|
9
9
|
userId: number;
|
|
10
10
|
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { Logbook } from "../../logbook/logbook";
|
|
2
2
|
|
|
3
3
|
export namespace LogbookEvents {
|
|
4
|
-
export interface
|
|
4
|
+
export interface ICreateLogbook {
|
|
5
5
|
logbook: Logbook.Types.ILogbookEntry;
|
|
6
6
|
userId: number;
|
|
7
7
|
}
|
|
8
|
-
export interface
|
|
8
|
+
export interface IDeleteLogbook {
|
|
9
9
|
uuid: string;
|
|
10
10
|
userId: number;
|
|
11
11
|
}
|