@hadyfayed/filament-workflow-canvas
Version:
Visual workflow builder and canvas component for Filament applications
13 lines • 405 B
TypeScript
import { FC, ReactNode } from 'react';
export interface WorkflowLayoutProps {
children: ReactNode;
isFullScreen?: boolean;
className?: string;
height?: string;
}
/**
* WorkflowLayout component for consistent workflow UI layout
* Handles fullscreen mode and responsive behavior
*/
export declare const WorkflowLayout: FC<WorkflowLayoutProps>;
//# sourceMappingURL=WorkflowLayout.d.ts.map