You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -29,21 +29,38 @@ index db2b6a78c1..f0e7745e01 100644
29
29
+ [key: string]: SerializableProps
30
30
+}
31
31
+
32
-
+export interface SliceProps {
32
+
+/**
33
+
+ * A props object for [slice placholder](https://v5.gatsbyjs.com/docs/reference/built-in-components/gatsby-slice/)
34
+
+ */
35
+
+export interface SlicePlaceholderProps {
33
36
+ alias: string
34
37
+ allowEmpty?: boolean
38
+
+ children?: React.ReactNode
35
39
+ [key: string]: SerializableProps
36
40
+}
37
41
+
38
42
+/**
39
-
+ * TODO
43
+
+ * Component used as a slice placholder, to mark a place in the page where a [slice](https://v5.gatsbyjs.com/docs/reference/built-in-components/gatsby-slice/) should be inserted.
44
+
+ */
45
+
+export declare function Slice(props: SlicePlaceholderProps): JSX.Element
46
+
+
47
+
+/**
48
+
+ * A props object for [slice component](https://v5.gatsbyjs.com/docs/reference/built-in-components/gatsby-slice/)
0 commit comments