9 lines
156 B
TypeScript
Executable File
9 lines
156 B
TypeScript
Executable File
|
|
export interface StrapiDTO<Internal> {
|
|
id: number;
|
|
attributes: Internal;
|
|
}
|
|
|
|
export interface PopulatedStrapiDTO<T extends Object> {
|
|
data: T
|
|
} |