Static
DEFAULT_OPTIONS
DEFAULT_OPTIONS: {
actions: {
cancel: ((...this: any, event: any) => Promise<void>);
give: ((...this: any, event: any) => Promise<void>);
split: ((...this: any, event: any) => Promise<void>);
};
classes: string[];
dragDrop: {
dragSelector: null;
dropSelector: string;
}[];
form: {
closeOnSubmit: boolean;
handler: ((...this: any, event: any) => Promise<void>);
submitOnChange: boolean;
submitOnClose: boolean;
};
position: {
height: number;
width: number;
};
sheetConfig: boolean;
tag: string;
window: {
minimizable: boolean;
resizable: boolean;
title: string;
};
} = ...
Type declaration
actions: {
cancel: ((...this: any, event: any) => Promise<void>);
give: ((...this: any, event: any) => Promise<void>);
split: ((...this: any, event: any) => Promise<void>);
}
cancel: ((...this: any, event: any) => Promise<void>)
- (...this, event): Promise<void>
Internal
Parameters
Rest
...this: any- event: any
Returns Promise<void>
give: ((...this: any, event: any) => Promise<void>)
- (...this, event): Promise<void>
Internal
Parameters
Rest
...this: any- event: any
Returns Promise<void>
split: ((...this: any, event: any) => Promise<void>)
- (...this, event): Promise<void>
Internal
Parameters
Rest
...this: any- event: any
Returns Promise<void>
classes: string[]
dragDrop: {
dragSelector: null;
dropSelector: string;
}[]
form: {
closeOnSubmit: boolean;
handler: ((...this: any, event: any) => Promise<void>);
submitOnChange: boolean;
submitOnClose: boolean;
}
closeOnSubmit: boolean
handler: ((...this: any, event: any) => Promise<void>)
- (...this, event): Promise<void>
Internal
Parameters
Rest
...this: any- event: any
Returns Promise<void>
submitOnChange: boolean
submitOnClose: boolean
position: {
height: number;
width: number;
}
height: number
width: number
sheetConfig: boolean
tag: string
window: {
minimizable: boolean;
resizable: boolean;
title: string;
}
minimizable: boolean
resizable: boolean
title: string
@augments{DragDropApplicationMixin<HandlebarsApplicationMixin>}