mirror of
https://github.com/tiqi-group/pydase.git
synced 2025-06-12 07:57:11 +02:00
updates eslint config, fixes linting errors
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
export type QuantityMap = {
|
||||
export interface QuantityMap {
|
||||
magnitude: number;
|
||||
unit: string;
|
||||
};
|
||||
}
|
||||
|
@ -1,15 +1,15 @@
|
||||
import { QuantityMap } from "./QuantityMap";
|
||||
|
||||
type SignatureDict = {
|
||||
interface SignatureDict {
|
||||
parameters: Record<string, Record<string, unknown>>;
|
||||
return_annotation: Record<string, unknown>;
|
||||
};
|
||||
}
|
||||
|
||||
type SerializedObjectBase = {
|
||||
interface SerializedObjectBase {
|
||||
full_access_path: string;
|
||||
doc: string | null;
|
||||
readonly: boolean;
|
||||
};
|
||||
}
|
||||
|
||||
type SerializedInteger = SerializedObjectBase & {
|
||||
value: number;
|
||||
|
Reference in New Issue
Block a user