@experts_hub/shared
Version:
Shared DTOs, interfaces, and utilities for experts hub applications
17 lines (16 loc) • 339 B
TypeScript
export interface IFetchQuestionQuery {
page_size?: number;
page: number;
searchText?: string;
question: string;
right: string;
sortColumn?: string;
sortBy?: string;
type?: string;
}
export interface IFetchQuestionResponse {
statusCode: number;
status: boolean;
message: string;
data: any;
}