Skip to content

Commit 798f723

Browse files
committed
chore(types): remove unnecessary declaration
1 parent 1c8ff93 commit 798f723

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/types/modify-types.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export type ModifyCollectionCallback = {
66
};
77
export type Modification = {
88
index?: number;
9-
collection?: ModifyCollectionCallback | ModifyCollectionCallback;
9+
collection?: ModifyCollectionCallback;
1010
children?: ModificationTags;
1111
modify?: ModifyCallback | ModifyCallback[];
1212
isRequired?: boolean;
@@ -18,6 +18,7 @@ export type Color = {
1818
type?: 'schemeClr' | 'srgbClr';
1919
value: string;
2020
};
21+
2122
export type TextStyle = {
2223
size?: number;
2324
color?: Color;

0 commit comments

Comments
 (0)