/* eslint-disable @typescript-eslint/no-unused-vars */ import { IMatchableProduct } from '../src'; export class TestProduct implements IMatchableProduct { product: string; matches(product: string): boolean { return true; } filter(filter: string): boolean { return true; } }