mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2025-04-19 23:39:18 +00:00
6 lines
109 B
TypeScript
6 lines
109 B
TypeScript
import {Category} from './category.interface';
|
|
|
|
export interface Categories {
|
|
[key: number]: Category;
|
|
}
|