fix lint errors

This commit is contained in:
Mark Tolmacs 2025-03-23 17:14:38 +01:00
parent c0d48a6b9d
commit 0f7eb8ea76
3 changed files with 6 additions and 3 deletions

View file

@ -15,9 +15,10 @@ import {
import { newElement, newLinearElement, newTextElement } from "./element";
import { randomId } from "./random";
import type { NonDeletedExcalidrawElement } from "./element/types";
import { isDevEnv } from "./utils";
import type { NonDeletedExcalidrawElement } from "./element/types";
export type ChartElements = readonly NonDeletedExcalidrawElement[];
const BAR_WIDTH = 32;

View file

@ -2,9 +2,10 @@ import { useAtomValue, editorJotaiStore, atom } from "./editor-jotai";
import fallbackLangData from "./locales/en.json";
import percentages from "./locales/percentages.json";
import type { NestedKeyOf } from "./utility-types";
import { isDevEnv } from "./utils";
import type { NestedKeyOf } from "./utility-types";
const COMPLETION_THRESHOLD = 85;
export interface Language {