I could use translation of relative imports, e.g. if ```typescript import { A } from '../interfaces.ts' export interface B extends A { ... } ``` translated to ```python from ..interfaces import A class B(A): ... ``` Any other way to do it?
I could use translation of relative imports, e.g. if
translated to
Any other way to do it?