mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-02-05 18:12:29 +01:00
8 lines
113 B
TypeScript
8 lines
113 B
TypeScript
interface Fields {
|
|
slug: string;
|
|
categorySlug: string;
|
|
tagSlugs?: Array<string>;
|
|
}
|
|
|
|
export default Fields;
|