mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 12:20:40 -07:00
* 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]>
6 lines
130 B
TypeScript
6 lines
130 B
TypeScript
export abstract class Drop {
|
|
public liquidMethodMissing (key: string | number): Promise<any> | any {
|
|
return undefined
|
|
}
|
|
}
|