interface dataMap { url: string; } export interface CustomPage { condition: string; contain: { link: any; url: string; }; } export interface IframeProps { id?: string; close?: boolean; scale?: number; scroll?: boolean; customPage?: CustomPage[]; data?: dataMap[]; onLoadEnd?: (param: dataMap) => void; } export {};