import IAuth from "./IAuth"; export default abstract class Base implements IAuth { abstract buildHeader(): string; }