From 55b14c8a3697edecfb7887353a17dbbc8ba0cbce Mon Sep 17 00:00:00 2001 From: iapyang Date: Mon, 14 Dec 2020 20:05:45 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=94=B9=E4=B8=BA=E7=9B=B8=E5=AF=B9?= =?UTF-8?q?=E4=BD=8D=E7=BD=AE=E5=BC=95=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/core/wrapper/layout/adapt/adapt.center.ts | 2 +- typescript/core/wrapper/layout/adapt/adapt.vertical.ts | 2 +- typescript/core/wrapper/layout/layout.tape.ts | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/typescript/core/wrapper/layout/adapt/adapt.center.ts b/typescript/core/wrapper/layout/adapt/adapt.center.ts index f45a9b391..91381a71f 100644 --- a/typescript/core/wrapper/layout/adapt/adapt.center.ts +++ b/typescript/core/wrapper/layout/adapt/adapt.center.ts @@ -1,4 +1,4 @@ -import { Layout } from "typescript"; +import { Layout } from "../../layout"; export declare class CenterAdaptLayout extends Layout { static xtype: string; diff --git a/typescript/core/wrapper/layout/adapt/adapt.vertical.ts b/typescript/core/wrapper/layout/adapt/adapt.vertical.ts index 6687c2ebb..8c08f9136 100644 --- a/typescript/core/wrapper/layout/adapt/adapt.vertical.ts +++ b/typescript/core/wrapper/layout/adapt/adapt.vertical.ts @@ -1,4 +1,4 @@ -import { Layout } from "typescript"; +import { Layout } from "../../layout"; export declare class VerticalAdaptLayout extends Layout { static xtype: string; diff --git a/typescript/core/wrapper/layout/layout.tape.ts b/typescript/core/wrapper/layout/layout.tape.ts index bd599ffbf..a6e1ba027 100644 --- a/typescript/core/wrapper/layout/layout.tape.ts +++ b/typescript/core/wrapper/layout/layout.tape.ts @@ -1,5 +1,4 @@ -import { Layout } from "typescript"; -import { _Layout } from "../layout"; +import { _Layout, Layout } from "../layout"; export interface _HTapeLayout extends _Layout { resize(): void;