free-astro-components 1.0.9 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/types/index.d.ts +8 -0
package/package.json
CHANGED
package/src/types/index.d.ts
CHANGED
|
@@ -57,3 +57,11 @@ export const ModalBody: ModalBody
|
|
|
57
57
|
// ModalFooter component
|
|
58
58
|
export type ModalFooter = typeof import('../index.js').ModalFooter
|
|
59
59
|
export const ModalFooter: ModalFooter
|
|
60
|
+
|
|
61
|
+
// OpenModal function
|
|
62
|
+
export type OpenModal = typeof import('../index.js').openModal
|
|
63
|
+
export const OpenModal: OpenModal
|
|
64
|
+
|
|
65
|
+
// CloseModal function
|
|
66
|
+
export type CloseModal = typeof import('../index.js').closeModal
|
|
67
|
+
export const CloseModal: CloseModal
|