import { ScrapItem } from '../entities/scrap-item.entity';
export interface ScrapInterface {
getItemsInHtml: (data: {
html: string;
keyword: string;
}) => Promise<ScrapItem[]>;
action: () => Promise<void>;
}