8 lines
178 B
TypeScript
8 lines
178 B
TypeScript
import { getOptions } from "../../common/util"
|
|
|
|
const options = getOptions()
|
|
const el = document.getElementById("base") as HTMLInputElement
|
|
if (el) {
|
|
el.value = options.base
|
|
}
|