8 lines
150 B
TypeScript
Raw Normal View History

import { Entity as StrapiEntity } from '@strapi/types';
export interface Entity {
id: StrapiEntity.ID;
createdAt: string;
updatedAt: string;
}