This commit is contained in:
Rizky 2024-05-09 11:04:59 +07:00
parent 1dd48b486d
commit 6aa8215b71
1 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ export const baseTypings = `
className: string
}
};
const children: RNode;
const children: RElement;
const PassProp: FC<Record<string, any> & { children: React.ReactNode }>;
const Preload: FC<{ url: string[] }>;
@ -119,5 +119,5 @@ export const baseTypings = `
local: T & { render: () => void }
) => void | (() => void) | Promise<void | (() => void)>;
cache?: boolean;
}) => RNode
}) => RElement
`;