feat: promise support for drops, working on #65

This commit is contained in:
Jun Yang
2019-03-10 18:05:52 +08:00
parent ad0930f152
commit 4a8088d4e4
25 changed files with 260 additions and 250 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ export abstract class Drop {
return undefined
}
liquidMethodMissing (key: string): string | undefined {
liquidMethodMissing (key: string): Promise<string | undefined> | string | undefined {
return undefined
}
}