///
/**
* Type representing a stack overflow question
*
* @public
*/
export type StackOverflowQuestion = {
title: string;
link: string;
owner: Record;
tags: string[];
answer_count: number;
};
/**
* Props for HomePageStackOverflowQuestions
*
* @public
*/
export type StackOverflowQuestionsContentProps = {
requestParams: StackOverflowQuestionsRequestParams;
icon?: React.ReactNode;
};
/**
* Type representing the request parameters accepted by the HomePageStackOverflowQuestions component
*
* @public
*/
export type StackOverflowQuestionsRequestParams = {
[key: string]: string | string[] | number;
};