/** * A category ID * * **Important**: While the suffix can be any length, it is strongly recommended to use * suffixes of at least 8 characters to ensure uniqueness and avoid collisions. * * @pattern ^cat_[A-Za-z0-9_-]+$ */ export type CategoryId = string; export type Category = { id: CategoryId; name: string; /** * The category's icon * * @format uri */ icon: string; parent?: CategoryId; }; //# sourceMappingURL=category.d.ts.map