import { BaseComponent } from '@/shared/base/BaseComponent';

export class StripeField extends BaseComponent {
  private readonly input = this.host.locator('input');

  fill(value: string | number): Promise<void> {
    return this.input.fill(`${value}`);
  }
}
