mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-17 18:37:04 -04:00
Fix Themes Tab
This commit is contained in:
parent
8ad710abca
commit
d8a5e43034
2 changed files with 4 additions and 2 deletions
4
src/webpack/common/types/components.d.ts
vendored
4
src/webpack/common/types/components.d.ts
vendored
|
@ -186,7 +186,9 @@ export type TextInput = ComponentType<PropsWithChildren<{
|
|||
Sizes: Record<"DEFAULT" | "MINI", string>;
|
||||
};
|
||||
|
||||
export type TextArea = ComponentType<PropsWithRef<HTMLProps<HTMLTextAreaElement>>>;
|
||||
export type TextArea = ComponentType<PropsWithRef<Omit<HTMLProps<HTMLTextAreaElement>, "onChange"> & {
|
||||
onChange(v: string): void;
|
||||
}>>;
|
||||
|
||||
interface SelectOption {
|
||||
disabled?: boolean;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue