mirror of
https://github.com/zsviczian/obsidian-excalidraw-plugin.git
synced 2025-08-06 05:46:28 +00:00
13 lines
396 B
TypeScript
13 lines
396 B
TypeScript
export type ButtonDefinition = { caption: string; tooltip?:string; action: Function };
|
|
|
|
export interface InputPromptOptions {
|
|
header: string,
|
|
placeholder?: string,
|
|
value?: string,
|
|
buttons?: ButtonDefinition[],
|
|
lines?: number,
|
|
displayEditorButtons?: boolean,
|
|
customComponents?: (container: HTMLElement) => void,
|
|
blockPointerInputOutsideModal?: boolean,
|
|
controlsOnTop?: boolean,
|
|
} |