Skip to content

Commit c400b08

Browse files
committed
fix: rename interface file
1 parent f51d7c6 commit c400b08

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

interfaces/tag-data-interface.ts renamed to interfaces/featured-collection-interface.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export default interface TagDataProduct {
1+
export default interface FeaturedCollectionProductTypes {
22
variant: any[];
33
url: string;
44
display_tag: string[];
@@ -29,9 +29,9 @@ export default interface TagDataProduct {
2929
name: string;
3030
slug: string;
3131
}
32-
export default interface TagData {
32+
export default interface FeaturedCollectionTypes {
3333
description: string | null;
3434
tag_image: string | null;
3535
tag_name: string | null;
36-
value: TagDataProduct[];
36+
value: FeaturedCollectionProductTypes[];
3737
}

0 commit comments

Comments
 (0)