mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-27 01:57:41 +00:00
chore(developer): fixup import
This commit is contained in:
parent
faa37f24a9
commit
47da67a742
1 changed files with 2 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
|||
import { VisualKeyboard, LDMLKeyboard } from "@keymanapp/common-types";
|
||||
import { BUILDER_KVK_HEADER_FLAGS } from "@keymanapp/common-types/src/kvk/kvk-file";
|
||||
|
||||
import * as path from 'path';
|
||||
import VisualKeyboardCompiler from "./visual-keyboard-compiler.js";
|
||||
|
||||
|
|
@ -27,7 +27,7 @@ export class KeymanWebCompiler {
|
|||
|
||||
let result =
|
||||
`{F: '${vk.header.unicodeFont.size}pt ${JSON.stringify(vk.header.unicodeFont.name)}', `+
|
||||
`K102: ${vk.header.flags & BUILDER_KVK_HEADER_FLAGS.kvkh102 ? 1 : 0}};${nl}` + // TODO-LDML: escape ' and " in font name correctly
|
||||
`K102: ${vk.header.flags & VisualKeyboard.VisualKeyboardHeaderFlags.kvkh102 ? 1 : 0}};${nl}` + // TODO-LDML: escape ' and " in font name correctly
|
||||
`${tab}this.KV.KLS={${nl}` +
|
||||
`${tab}${tab}TODO_LDML: ${vk.keys.length}${nl}` +
|
||||
// TODO-LDML: fill in KLS
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue