forked from fanruan/fineui
Browse Source
Merge in VISUAL/fineui from ~GUYI/fineui:master to master * commit '925e44eb0d85bd33e5287e5b0d50552924268ceb': 无jira任务,类型修改 无jira任务,补充声明master
Guyi
5 years ago
4 changed files with 33 additions and 0 deletions
@ -0,0 +1,11 @@
|
||||
import { _Single } from "../single"; |
||||
|
||||
export interface _Iframe extends _Single { |
||||
setSrc(v: string): void; |
||||
|
||||
getSrc(): string; |
||||
|
||||
setNam(v: string): void; |
||||
|
||||
getName(): string; |
||||
} |
@ -0,0 +1,9 @@
|
||||
import { _Layout } from "../layout"; |
||||
|
||||
export interface _AbsoluteLayout extends _Layout { |
||||
resize(): void; |
||||
|
||||
stroke<T>(items: T[]): void; |
||||
|
||||
populate<T>(items?: T[]): void; |
||||
} |
@ -0,0 +1,7 @@
|
||||
import { _Layout } from "../layout"; |
||||
|
||||
export interface _VerticalLayout extends _Layout { |
||||
resize(): void; |
||||
|
||||
populate<T>(items?: T[]): void; |
||||
} |
Loading…
Reference in new issue