Skip to content

Commit

Permalink
all ts
Browse files Browse the repository at this point in the history
  • Loading branch information
lancejpollard committed Jun 2, 2023
1 parent 2347b47 commit afcb1cb
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 1,256 deletions.
1 change: 1 addition & 0 deletions form.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
declare module '@lancejpollard/script-tree'
declare module '@tunebond/call-text'
11 changes: 6 additions & 5 deletions form.ts
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
/* eslint-disable sort-keys/sort-keys-fix */
/* eslint-disable @typescript-eslint/no-unsafe-return */
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
/* eslint-disable @typescript-eslint/no-explicit-any */
import pronunciation from './pronunciation'
import syllable from './syllable'
import pronunciation from './pronunciation.js'
import syllable from './syllable.js'
import st from '@lancejpollard/script-tree'

const D: Record<string, string> = {
'': '',
'!': '^', // short vowel
$: '5', // variant
'&': '0', // nasal
'+': '3',
'++': '33',
'-': '4',
'+': '3',
'--': '44',
'-': '4',
'@': '00', // non-syllabic
'^': '9', // accent mark
_: '%', // long vowel
'': '',
}

type Link = { i: string; name?: string; o: string }
Expand Down
Loading

0 comments on commit afcb1cb

Please sign in to comment.