| 7 | export type ComponentTag = string | WebCellComponent; |
| 8 | |
| 9 | export interface FunctionCellProps extends WebCellProps { |
| 10 | component: FC | AFC; |
| 11 | } |
| 12 | export interface FunctionCell extends WebCell<FunctionCellProps> {} |
| 13 | |
| 14 | @component({ tagName: 'function-cell' }) |
nothing calls this directly
no outgoing calls
no test coverage detected