import type t from '@babel/types' export interface ApiScanResultItem { value: string location: { file: string line: number column: number } ast?: t.Node matched?: string[] } export interface PluginConfigScanResultItem { value: string correspondingApis: string[] matched: string[] }