update Issue type

This commit is contained in:
Omar Khan
2022-11-17 13:37:45 -05:00
parent 0970753790
commit feafc0c91b

View File

@@ -41,7 +41,7 @@ class Issue extends SerializedType {
* representing an integer amount
* @returns An Amount object
*/
static from<T extends Issue | IssueObject | string>(value: T): Issue {
static from<T extends Issue | IssueObject>(value: T): Issue {
if (value instanceof Issue) {
return value
}