Files
liquidjs/src/drop/drop.ts
T
0983f2c420 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]>
2024-05-22 12:35:46 +08:00

6 lines
130 B
TypeScript

export abstract class Drop {
public liquidMethodMissing (key: string | number): Promise<any> | any {
return undefined
}
}