9 lines
171 B
TypeScript
9 lines
171 B
TypeScript
/**
|
|
* @category Hooks
|
|
*/
|
|
export declare const useSandpackNavigation: (clientId?: string) => {
|
|
refresh: () => void;
|
|
back: () => void;
|
|
forward: () => void;
|
|
};
|