forked from fanruan/fineui
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; |
||||
|
||||
setName: (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