10 lines
255 B
TypeScript
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;
|