@takumi-rs/helpers 0.7.3 → 0.8.0
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/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -330,7 +330,7 @@ export type StyleInput = Partial<Style>;
|
|
|
330
330
|
export type Node = ContainerNode | TextNode | ImageNode | AnyNode;
|
|
331
331
|
export type ContainerNode = StyleInput & {
|
|
332
332
|
type: "container";
|
|
333
|
-
children
|
|
333
|
+
children?: Node[];
|
|
334
334
|
};
|
|
335
335
|
export type TextNode = StyleInput & {
|
|
336
336
|
type: "text";
|