mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-06-05 20:54:56 +00:00
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:
@@ -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
|
||||
}
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user