Skip to content

Commit ddab6ae

Browse files
committed
fix(type): add missing export statement
1 parent 6fbf0a6 commit ddab6ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/definitions.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export const getInterfaceDefinition = (interfaceName: string, typeName: string)
55
};
66

77
export const getTypeDefinition = (typeName: string): string => {
8-
return `type ${typeName} = `;
8+
return `export type ${typeName} = `;
99
};
1010

1111
export const getSvgConstant = (

0 commit comments

Comments
 (0)