chore: un-export unused affiliate data types

Knip flagged LocalizedText, AudienceCriterion, and HowItWorksStep as
unused exports. They're still used internally to type the const arrays.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Michael B
2026-05-28 12:49:36 -04:00
parent 93e503b3cf
commit 209116bfb8
2 changed files with 4 additions and 4 deletions

View File

@@ -1,8 +1,8 @@
import type { Locale } from '../i18n/translations'
export type LocalizedText = Record<Locale, string>
type LocalizedText = Record<Locale, string>
export interface AudienceCriterion {
interface AudienceCriterion {
id: string
label: LocalizedText
}

View File

@@ -1,8 +1,8 @@
import type { Locale } from '../i18n/translations'
export type LocalizedText = Record<Locale, string>
type LocalizedText = Record<Locale, string>
export interface HowItWorksStep {
interface HowItWorksStep {
id: string
label: LocalizedText
description: LocalizedText