Skip to content

Commit f70cfaf

Browse files
Fixes #3045 (#3046)
Co-authored-by: Stephen James <sjames@salesforce.com>
1 parent 4063597 commit f70cfaf

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

components/settings.d.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
declare module '@salesforce/design-system-react/components/settings' {
1+
declare module "@salesforce/design-system-react/components/settings" {
22
type Props = {
33
setAssetsPath: (arg0: string) => void;
44
getAssetsPath: () => string;
55
setAppElement: (arg0: string) => void;
66
getAppElement: () => string;
77
};
8-
export default Props;
9-
}
8+
const settings: Props;
9+
export default settings;
10+
}

0 commit comments

Comments
 (0)