UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

10 lines (9 loc) 290 B
import React from 'react'; export interface ToolbarContextState { setShowError: (showError: boolean) => void; onEdit?: () => void; onDone?: () => void; onCancel?: () => void; } declare const ToolbarContext: React.Context<ToolbarContextState>; export default ToolbarContext;