@longline/aqua-ui 1.0.170 → 1.0.172
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.
- package/controls/View/View.d.ts +3 -3
- package/package.json +1 -1
package/controls/View/View.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
interface
|
|
2
|
+
interface IViewProps {
|
|
3
3
|
/** @ignore */
|
|
4
4
|
className?: string;
|
|
5
5
|
/**
|
|
@@ -50,5 +50,5 @@ interface IProps {
|
|
|
50
50
|
* <View label="Email address">{email}</View>
|
|
51
51
|
* ```
|
|
52
52
|
*/
|
|
53
|
-
declare const View: ({ ghost, ...props }:
|
|
54
|
-
export { View };
|
|
53
|
+
declare const View: ({ ghost, ...props }: IViewProps) => React.JSX.Element;
|
|
54
|
+
export { View, IViewProps };
|