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;