Update isCopyable comment

This commit is contained in:
Erik Pasternak
2025-06-16 12:38:46 -07:00
parent f117bbad22
commit 2bae8eb377

View File

@@ -17,7 +17,8 @@ export interface ICopyable<T extends ICopyData> extends ISelectable {
toCopyData(): T | null;
/**
* Whether this instance is currently copyable.
* Whether this instance is currently copyable. The standard implementation
* is to return true if isOwnDeletable and isOwnMovable return true.
*
* @returns True if it can currently be copied.
*/