| 1 | import { usePluginData } from '@docusaurus/useGlobalData'; |
| 2 | |
| 3 | interface BootstrapMetadata { |
| 4 | bootstrapVersion: string; |
| 5 | bootstrapDocsUrl: string; |
| 6 | bootstrapCssHash: string; |
| 7 | rbVersion: string; |
| 8 | } |
| 9 | |
| 10 | export default function useBootstrapMetadata(): BootstrapMetadata { |
| 11 | return usePluginData('bootstrap-metadata-plugin') as BootstrapMetadata; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…