Is there any method, when I extend one class from another it auto import the class…?
import { Model } from "./Model"; // <-- auto import
export class Message extends Model {
constructor(){
super();
}
}
Is there any method, when I extend one class from another it auto import the class…?
import { Model } from "./Model"; // <-- auto import
export class Message extends Model {
constructor(){
super();
}
}