mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-16 21:00:40 -07:00
feat: exported Drop interface for #107
Deprecate snake_cased options and APIs, sed #109
This commit is contained in:
+8
-3
@@ -1,6 +1,11 @@
|
||||
export abstract class Drop {
|
||||
abstract valueOf(): any;
|
||||
import { deprecate } from '../util/deprecate'
|
||||
|
||||
liquid_method_missing (name: string) { // eslint-disable-line
|
||||
export abstract class Drop {
|
||||
valueOf(): any {
|
||||
return undefined
|
||||
}
|
||||
|
||||
liquidMethodMissing (key: string): string | undefined {
|
||||
return undefined
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user