front-end/src/utils/_dto.ts
2022-07-18 11:38:44 +03:00

9 lines
148 B
TypeScript

export interface StrapiDTO<Internal> {
id: number;
attributes: Internal;
}
export interface PopulatedStrapiDTO<T extends Object> {
data: T
}