import ContainerController from "./ContainerController"; /** * ロゴの表示制御 */ declare class LogoController extends ContainerController { protected _sub_container: HTMLAnchorElement; /** * コンストラクタ * @param options 表示オプション */ constructor(options?: LogoController.Option); getLogoImage(option: { mini: boolean; }): Promise; } declare namespace LogoController { interface Option extends ContainerController.Option { } } export default LogoController; //# sourceMappingURL=LogoController.d.ts.map