Files
sera-new-hp/utils/qAndABox.ts

19 lines
368 B
TypeScript

/**
* Types for QAndABox component
* @module utils/qAndABox
*/
/**
* Interface that defines property for QAndABox component
* @property {string} question
* @example
* <QAndABox question="Where can I find this Usage?">
* <p>Read Your F* Manual.</p>
* </QAndABox>
*/
interface QAndABoxProperty {
question: string;
}
export type { QAndABoxProperty };