storybook-addon-playground
Version:
A playground to enable consumers learn how to use the component library or to reproduce bugs
8 lines • 372 B
TypeScript
import { Code, Tab } from "@/types";
interface UseToolbarActionsReturnType {
onReset: () => void;
onFormatCode: () => void;
}
declare const useToolbarActions: (code: Code, updateCode: (newCode: string) => void, resetCode: () => void, currentTab: Tab) => UseToolbarActionsReturnType;
export default useToolbarActions;
//# sourceMappingURL=useToolbarActions.d.ts.map