mirror of
https://github.com/tiqi-group/pydase.git
synced 2026-02-04 09:48:40 +01:00
updates eslint config, fixes linting errors
This commit is contained in:
@@ -20,13 +20,13 @@ type Action =
|
||||
fullAccessPath: string;
|
||||
newValue: SerializedObject;
|
||||
};
|
||||
type UpdateMessage = {
|
||||
interface UpdateMessage {
|
||||
data: { full_access_path: string; value: SerializedObject };
|
||||
};
|
||||
type LogMessage = {
|
||||
}
|
||||
interface LogMessage {
|
||||
levelname: LevelName;
|
||||
message: string;
|
||||
};
|
||||
}
|
||||
|
||||
const reducer = (state: State | null, action: Action): State | null => {
|
||||
switch (action.type) {
|
||||
|
||||
Reference in New Issue
Block a user