fineui是帆软报表和BI产品线所使用的前端框架。

15 lines
371 B

import { Single, _Single } from "../single";
export interface _Iframe extends _Single {
setSrc(v: string): void;
getSrc(): string;
setName(v: string): void;
getName(): string;
}
export declare class Iframe extends Single {
static xtype: string;
setSrc(v: string): void;
getSrc(): string;
setName(v: string): void;
getName(): string;
}