Browse Source

fix: 改为相对位置引用

es6
iapyang 4 years ago
parent
commit
55b14c8a36
  1. 2
      typescript/core/wrapper/layout/adapt/adapt.center.ts
  2. 2
      typescript/core/wrapper/layout/adapt/adapt.vertical.ts
  3. 3
      typescript/core/wrapper/layout/layout.tape.ts

2
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;

2
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;

3
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;

Loading…
Cancel
Save