aboutsummaryrefslogtreecommitdiff
path: root/src/types.ts
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2023-01-13 20:32:20 +0530
committerAkshay Nair <phenax5@gmail.com>2023-01-13 20:33:01 +0530
commit518a6a9ee31f0b03f08cb77bc613b4d708bb640b (patch)
tree7f17ce66f337dee573192ce06a24385415048ae2 /src/types.ts
parent42f8c401dc9519bc8b2d386ce9eda072144a46d0 (diff)
downloadts-types-lang-518a6a9ee31f0b03f08cb77bc613b4d708bb640b.tar.gz
ts-types-lang-518a6a9ee31f0b03f08cb77bc613b4d708bb640b.zip
chore: prettier
Diffstat (limited to 'src/types.ts')
-rw-r--r--src/types.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/types.ts b/src/types.ts
index d9e874e..c0258db 100644
--- a/src/types.ts
+++ b/src/types.ts
@@ -17,13 +17,13 @@ export interface Ctx {
getResultExpr: (key?: string) => string
printResultNode: () => void
- currentEnv: string,
- setEnv: (e: string) => void,
+ currentEnv: string
+ setEnv: (e: string) => void
- createRef: (ty: string) => string,
- getRef: (key: string) => any,
- setRef: (key: string, ty: string) => void,
- deleteRef: (key: string) => void,
+ createRef: (ty: string) => string
+ getRef: (key: string) => any
+ setRef: (key: string, ty: string) => void
+ deleteRef: (key: string) => void
addCustomEffect: (name: string, expr: string) => void
runCustomEffect: (name: string, args: Type[]) => Promise<string[]>