updates eslint config, fixes linting errors

This commit is contained in:
Mose Müller
2024-07-08 08:30:55 +02:00
parent a2ee8d02d6
commit fb251649a0
27 changed files with 1739 additions and 161 deletions

View File

@ -1,4 +1,4 @@
export type QuantityMap = {
export interface QuantityMap {
magnitude: number;
unit: string;
};
}

View File

@ -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;