17 lines
261 B
TypeScript
17 lines
261 B
TypeScript
// Interface automatically generated by schemas-to-ts
|
|
|
|
export interface Quote {
|
|
title?: string;
|
|
body?: string;
|
|
}
|
|
export interface Quote_Plain {
|
|
title?: string;
|
|
body?: string;
|
|
}
|
|
|
|
export interface Quote_NoRelations {
|
|
title?: string;
|
|
body?: string;
|
|
}
|
|
|