import { IPortalApi } from '@portal-hq/utils' import { Blockaid, BlockaidOptions, IBlockaid } from './blockaid' import { Hypernative, HypernativeOptions, IHypernative } from './hypernative' export class Security { public readonly hypernative: IHypernative public readonly blockaid: IBlockaid constructor(api: IPortalApi) { this.blockaid = new Blockaid({ api }) this.hypernative = new Hypernative({ api }) } } export type { IHypernative, HypernativeOptions } export type { IBlockaid, BlockaidOptions }