| 7 | import { safeParseString } from "~/utils" |
| 8 | |
| 9 | export interface ItemsProps extends React.HTMLAttributes<HTMLDivElement> { |
| 10 | id: SourceID |
| 11 | /** |
| 12 | * 是否显示透明度,拖动时原卡片的样式 |
| 13 | */ |
| 14 | isDragging?: boolean |
| 15 | setHandleRef?: (ref: HTMLElement | null) => void |
| 16 | } |
| 17 | |
| 18 | interface NewsCardProps { |
| 19 | id: SourceID |
nothing calls this directly
no outgoing calls
no test coverage detected