mirror of
https://github.com/strapi/strapi.git
synced 2025-07-13 03:51:54 +00:00

chore: fetch template only if name matches name convention chore: linting chore: fix tests chore: fix npm scripts test: try to fix test
8 lines
129 B
TypeScript
8 lines
129 B
TypeScript
import type { Data } from '@strapi/types';
|
|
|
|
export interface Entity {
|
|
id: Data.ID;
|
|
createdAt: string;
|
|
updatedAt: string;
|
|
}
|