12 lines
235 B
TypeScript
12 lines
235 B
TypeScript
export default interface BaseCollection {
|
|
id: number;
|
|
documentId: string;
|
|
title: string;
|
|
description: string;
|
|
slug: string;
|
|
date: string;
|
|
createdAt: string;
|
|
updatedAt: string;
|
|
publishedAt: string;
|
|
locale: string;
|
|
}
|