moved type definitions to a separate directory and fixed some documentations under utils/
This commit is contained in:
18
utils/types/qAndABox.ts
Normal file
18
utils/types/qAndABox.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
/**
|
||||
* Type 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 };
|
||||
Reference in New Issue
Block a user