Files
scrap/node_modules/next/dist/client/dev/dev-build-watcher.d.ts
2024-09-24 03:52:46 +00:00

6 lines
207 B
TypeScript

export interface ShowHideHandler {
show: () => void;
hide: () => void;
}
export default function initializeBuildWatcher(toggleCallback: (handlers: ShowHideHandler) => void, position?: string): void;