For types, should we prefix type
when we export the types like,
export type {
TPromptCommentFieldProps,
};
Or when we import the type,
import { type TPromptCommentFieldProps } from 'test-path';
Or on both.
I’ve seen that in one repo the type is added when types are imported, and in another repo when types are exposed, and i would like to know the difference and where to add type
prefix.