moved type definitions to a separate directory and fixed some documentations under utils/

This commit is contained in:
2024-11-17 18:06:59 +09:00
parent 1ab17242f7
commit 1c4947e4e3
11 changed files with 3 additions and 4 deletions

18
utils/types/qAndABox.ts Normal file
View 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 };