diff --git a/src/features/GetFonts/model/types/filter.ts b/src/features/GetFonts/model/types/filter.ts new file mode 100644 index 0000000..41f3193 --- /dev/null +++ b/src/features/GetFonts/model/types/filter.ts @@ -0,0 +1,12 @@ +import type { Property } from '$shared/lib'; + +export interface FilterGroupConfig { + id: string; + label: string; + properties: Property[]; +} + +export interface FilterConfig { + queryValue?: string; + groups: FilterGroupConfig[]; +}