1export default interface IFrameMeta { 2 id: number; 3 tabId: number; 4 parentFrameId: number; 5 securityOrigin: string; 6 url: string; 7 name: string; 8} 9 10