use eslint auto fix

This commit is contained in:
duanfuxiang
2025-01-07 12:27:22 +08:00
parent d8573c7889
commit 8d253faddc
41 changed files with 890 additions and 1569 deletions

View File

@@ -2,7 +2,7 @@ import * as React from "react";
import SettingsItem from "./SettingsItem";
interface IProps {
type IProps = {
name: string;
description: string;

View File

@@ -2,7 +2,7 @@ import * as React from "react";
import SettingsItem from "./SettingsItem";
interface IProps {
type IProps = {
name: string;
description: string;

View File

@@ -4,7 +4,7 @@ import * as React from "react";
import Context from "../../core/autocomplete/context-detection";
import { FewShotExample } from "../versions";
interface IProps {
type IProps = {
name: string;
description: string;

View File

@@ -1,6 +1,6 @@
import * as React from "react";
interface IProps {
type IProps = {
name: string;
description: string | React.ReactNode;
errorMessage?: string;

View File

@@ -3,7 +3,7 @@ import { useRef } from "react";
import SettingsItem from "./SettingsItem";
interface IProps {
type IProps = {
name: string;
description: string;

View File

@@ -2,7 +2,7 @@ import * as React from "react";
import SettingsItem from "./SettingsItem";
interface IProps {
type IProps = {
name: string;
description: string;
placeholder: string;

View File

@@ -3,7 +3,7 @@ import * as React from "react";
import { Trigger } from "../versions";
interface IProps {
type IProps = {
name: string;
description: string;
triggers: Trigger[];