sentences-crud/src/interfaces/queryOptions.ts
2021-07-24 16:40:02 +02:00

15 lines
No EOL
277 B
TypeScript

export interface ListSentencesOptions {
orderBy?: string,
order?: 'asc' | 'desc',
page?: number
}
export interface UpdateSentenceOptions {
text?: string,
category?: string
}
export interface CreateSentenceOptions {
text: string,
category: string
}