fix: Fixed types for slash commands by inspecting generics

This commit is contained in:
Palanikannan1437 2023-12-22 18:52:00 +05:30
parent 98b7a941f9
commit b652d1a8f1

View File

@ -317,7 +317,7 @@ const renderItems = () => {
let popup: any | null = null;
return {
onStart: (props: { editor: Editor; clientRect: DOMRect }) => {
onStart: (props: { editor: Editor; clientRect?: (() => DOMRect | null) | null }) => {
component = new ReactRenderer(CommandList, {
props,
// @ts-ignore
@ -335,7 +335,7 @@ const renderItems = () => {
placement: "bottom-start",
});
},
onUpdate: (props: { editor: Editor; clientRect: DOMRect }) => {
onUpdate: (props: { editor: Editor; clientRect?: (() => DOMRect | null) | null }) => {
component?.updateProps(props);
popup &&