@financial-times/dotcom-ui-bootstrap 7.3.0 → 7.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,16 @@
1
+ /// <reference types="react" />
2
+ declare type TBootstrapProps = {
3
+ trackErrors?: boolean;
4
+ coreScripts?: string[];
5
+ enhancedScripts?: string[];
6
+ };
7
+ declare function Bootstrap({ coreScripts, enhancedScripts, trackErrors }: TBootstrapProps): JSX.Element;
8
+ declare namespace Bootstrap {
9
+ var defaultProps: {
10
+ trackErrors: boolean;
11
+ coreScripts: any[];
12
+ enhancedScripts: any[];
13
+ };
14
+ }
15
+ export { Bootstrap };
16
+ export type { TBootstrapProps };
@@ -0,0 +1 @@
1
+ export * from './components/Bootstrap';
@@ -0,0 +1 @@
1
+ export default function formatConfigJSON(coreScripts: string[], enhancedScripts: string[], trackErrors?: boolean): string;
@@ -0,0 +1 @@
1
+ export default function getBootstrapJS(): string;
@@ -0,0 +1,3 @@
1
+ import formatConfigJSON from './formatConfigJSON';
2
+ import getBootstrapJS from './getBootstrapJS';
3
+ export { formatConfigJSON, getBootstrapJS };