feature/fetch-fonts #14

Merged
ilia merged 76 commits from feature/fetch-fonts into main 2026-01-14 11:01:44 +00:00
Showing only changes of commit a9cdd15787 - Show all commits

View File

@@ -0,0 +1,12 @@
import type { Property } from '$shared/lib';
export interface FilterGroupConfig<TValue extends string> {
id: string;
label: string;
properties: Property<TValue>[];
}
export interface FilterConfig<TValue extends string> {
queryValue?: string;
groups: FilterGroupConfig<TValue>[];
}