interface를 정의해놓고 필요로하는 services에서 사용하기 위해서 export, import를 진행하였으나
Re-exporting a type when the '--isolatedModules' flag is provided requires using 'export type'.ts(1205)
라는 에러 발생. Quick Fix
를 하면
export { interface }
에서 export type { interface }
로 변경된다.
type, interface는 import, export시에 type을 명시해주어야 하나보다.