minishouyin/node_modules/antd/es/app/index.d.ts
2025-11-12 11:35:57 +08:00

10 lines
255 B
TypeScript

import type { AppProps } from './App';
import App_ from './App';
import useApp from './useApp';
export type { AppProps };
type CompoundedComponent = typeof App_ & {
useApp: typeof useApp;
};
declare const App: CompoundedComponent;
export default App;