summaryrefslogtreecommitdiff
path: root/packages/client/src/scripts
diff options
context:
space:
mode:
authoryzhe819 <68207314+yzhe819@users.noreply.github.com>2022-07-10 22:47:29 +1200
committerGitHub <noreply@github.com>2022-07-10 19:47:29 +0900
commit9107de63b42970fa309fe0a3f6214627e84d06d3 (patch)
tree7ccae8dc8393a60a4e4f97bb36b931132bb2f7a7 /packages/client/src/scripts
parentenhance(client): update themes (diff)
downloadsharkey-9107de63b42970fa309fe0a3f6214627e84d06d3.tar.gz
sharkey-9107de63b42970fa309fe0a3f6214627e84d06d3.tar.bz2
sharkey-9107de63b42970fa309fe0a3f6214627e84d06d3.zip
chore: fix lint errors (#8981)
Diffstat (limited to 'packages/client/src/scripts')
-rw-r--r--packages/client/src/scripts/hpml/expr.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/client/src/scripts/hpml/expr.ts b/packages/client/src/scripts/hpml/expr.ts
index 00e3ed118b..18c7c2a14b 100644
--- a/packages/client/src/scripts/hpml/expr.ts
+++ b/packages/client/src/scripts/hpml/expr.ts
@@ -16,7 +16,7 @@ export type TextValue = ExprBase & {
value: string;
};
-export type MultiLineTextValue = ExprBase & {
+export type MultiLineTextValue = ExprBase & {
type: 'multiLineText';
value: string;
};