Added types back in for code editor values

This commit is contained in:
Dean 2025-02-13 14:07:57 +00:00
parent ca0630c620
commit a29c608273
1 changed files with 2 additions and 2 deletions

View File

@ -61,8 +61,8 @@
let mode: BindingMode | null
let sidePanel: SidePanel | null
let initialValueJS = value?.startsWith?.("{{ js ")
let jsValue = initialValueJS ? value : null
let hbsValue = initialValueJS ? null : value
let jsValue: string | null = initialValueJS ? value : null
let hbsValue: string | null = initialValueJS ? null : value
let getCaretPosition: CaretPositionFn | undefined
let insertAtPos: InsertAtPositionFn | undefined
let targetMode: BindingMode | null = null