We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
During TypeScript conversion, we noticed that two props in IHook were not documented and might not even be used in the code at all.
IHook
Look at this deeper, if they're not used, remove them. If they are, add documentation or evaluate how useful they are.
export interface IHook extends IWrapper { [key: string]: any; onBeforeMount: (tester: Tester, ops: IMountOps) => void; onInit: (tester: Tester) => void; props: object | (() => void); shortCuts: { [shortCutName: string]: () => void }; // USED ? wrapper: () => { Component: Component, name: string, props: object }; // USED ? }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
During TypeScript conversion, we noticed that two props in
IHook
were not documented and might not even be used in the code at all.Look at this deeper, if they're not used, remove them. If they are, add documentation or evaluate how useful they are.
The text was updated successfully, but these errors were encountered: