ModalBaseConstructorParams<Value>
The parameters for constructing a ModalBase.
Import:
import type { ModalBaseConstructorParams } from 'obsidian-dev-utils/obsidian/modals/modal';Signature:
export interface ModalBaseConstructorParams<Value> extends ModalParamsBaseExtends: ModalParamsBase
Properties
| Property | Type | Description |
|---|---|---|
| app | App | An Obsidian app instance. (Inherited from ModalParamsBase) |
| cssClasses? | string[] | A CSS class to apply to the modal. (Inherited from ModalParamsBase) |
| promiseResolve | PromiseResolve<Value> | A function to resolve the value of the modal. |