Skip to content

Commit

Permalink
Merge pull request #1666 from League-of-Foundry-Developers/v9/actor-s…
Browse files Browse the repository at this point in the history
…heet

Update ActorSheet to v9.255
  • Loading branch information
ghost91- authored Mar 20, 2022
2 parents 51c5302 + d6bd6a2 commit 77a2203
Showing 1 changed file with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ declare global {
get title(): string;

/**
* A convenience reference to the Actor entity
* A convenience reference to the Actor document
*/
get actor(): this['object'];

Expand Down Expand Up @@ -72,11 +72,6 @@ declare global {
*/
protected _onConfigureToken(event: JQuery.ClickEvent): void;

/**
* Handle requests to configure the default sheet used by this Actor
*/
protected _onConfigureSheet(event: JQuery.ClickEvent): void;

/**
* Handle changing the actor profile image by opening a FilePicker
*/
Expand Down Expand Up @@ -156,6 +151,13 @@ declare global {
event: DragEvent,
itemData: foundry.data.ItemData['_source']
): undefined | Promise<InstanceType<ConfiguredDocumentClass<typeof Item>>[]>;

/**
* Is the drop data coming from the same actor?
* @param data - The drop data.
* @internal
*/
protected _isFromSameActor(data: ActorSheet.DropData.Item): Promise<boolean>;
}

namespace ActorSheet {
Expand Down

0 comments on commit 77a2203

Please sign in to comment.