| 26 | } |
| 27 | |
| 28 | export interface Prop { |
| 29 | required: boolean; |
| 30 | tsType: { |
| 31 | name: string; |
| 32 | raw?: string; |
| 33 | }; |
| 34 | description: string; |
| 35 | defaultValue: { |
| 36 | value: string; |
| 37 | }; |
| 38 | } |
| 39 | |
| 40 | function useDoc(withPath: string) { |
| 41 | const pluginData = usePluginData(pluginName) as ComponentDocsPluginData; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…