15 lines
252 B
TypeScript
15 lines
252 B
TypeScript
/**
|
|
* Types for QAndABox component
|
|
* @module utils/qAndABox
|
|
*/
|
|
|
|
/**
|
|
* Interface that defines property for QAndABox component
|
|
* @property {string} question
|
|
*/
|
|
interface QAndABoxProperty {
|
|
question: string;
|
|
}
|
|
|
|
export type { QAndABoxProperty };
|