| 1 | import { create, w, v } from '@dojo/framework/core/vdom' |
| 2 | |
| 3 | export interface ButtonProperties { |
| 4 | id: string; |
| 5 | label: string; |
| 6 | onClick: () => void; |
| 7 | } |
| 8 | |
| 9 | const factory = create().properties<ButtonProperties>(); |
| 10 |
nothing calls this directly
no outgoing calls
no test coverage detected