mirror of
https://github.com/tiqi-group/pydase.git
synced 2025-06-20 11:08:01 +02: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