diff options
| author | Kagami Sascha Rosylight <saschanaz@outlook.com> | 2023-02-16 15:09:41 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-16 23:09:41 +0900 |
| commit | 63df2c851e31a30dda3b7e9edefb2a97e4c1daa6 (patch) | |
| tree | cb0066301adcc1168bef2246cbf13c6767151959 /packages/frontend/src/scripts/hpml | |
| parent | fix(server): マイグレーションad1676438468213が通らないのを修... (diff) | |
| download | sharkey-63df2c851e31a30dda3b7e9edefb2a97e4c1daa6.tar.gz sharkey-63df2c851e31a30dda3b7e9edefb2a97e4c1daa6.tar.bz2 sharkey-63df2c851e31a30dda3b7e9edefb2a97e4c1daa6.zip | |
refactor: remove all unused imports (#9951)
Co-authored-by: tamaina <tamaina@hotmail.co.jp>
Diffstat (limited to 'packages/frontend/src/scripts/hpml')
| -rw-r--r-- | packages/frontend/src/scripts/hpml/evaluator.ts | 5 | ||||
| -rw-r--r-- | packages/frontend/src/scripts/hpml/lib.ts | 1 |
2 files changed, 2 insertions, 4 deletions
diff --git a/packages/frontend/src/scripts/hpml/evaluator.ts b/packages/frontend/src/scripts/hpml/evaluator.ts index d4090ea15c..7bddd3f62d 100644 --- a/packages/frontend/src/scripts/hpml/evaluator.ts +++ b/packages/frontend/src/scripts/hpml/evaluator.ts @@ -1,11 +1,10 @@ import autobind from 'autobind-decorator'; -import { markRaw, ref, Ref, unref } from 'vue'; +import { ref, Ref, unref } from 'vue'; import { collectPageVars } from '../collect-page-vars'; -import { initHpmlLib, initAiLib } from './lib'; +import { initHpmlLib } from './lib'; import { Expr, isLiteralValue, Variable } from './expr'; import { PageVar, envVarsDef, Fn, HpmlScope, HpmlError } from '.'; import { version } from '@/config'; -import * as os from '@/os'; /** * Hpml evaluator diff --git a/packages/frontend/src/scripts/hpml/lib.ts b/packages/frontend/src/scripts/hpml/lib.ts index ede7b0d689..88db82dd27 100644 --- a/packages/frontend/src/scripts/hpml/lib.ts +++ b/packages/frontend/src/scripts/hpml/lib.ts @@ -1,4 +1,3 @@ -import tinycolor from 'tinycolor2'; import seedrandom from 'seedrandom'; import { Hpml } from './evaluator'; import { Expr } from './expr'; |