fix: allow liquidMethodMissing to return any supported value type (#698)

* fix: allow liquidMethodMissing to return any supported value type

* Update src/drop/drop.ts

Co-authored-by: Jun Yang <[email protected]>

---------

Co-authored-by: Jun Yang <[email protected]>
This commit is contained in:
Adam Tanner
2024-05-22 12:35:46 +08:00
committed by GitHub
co-authored by Jun Yang
parent 12001b6161
commit 0983f2c420
2 changed files with 17 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
export abstract class Drop {
public liquidMethodMissing (key: string | number): Promise<string | undefined> | string | undefined {
public liquidMethodMissing (key: string | number): Promise<any> | any {
return undefined
}
}