spiegel-keyman/common/models/types
Marc Durdin 0fbf53f8d7 chore(web): move version from package.json to keyman-version package
Starts to resolve the chaos of putting version numbers into every
package.json file.

Adds a new keyman-version package which mimics the
version information in build-utils.sh. This will eventually replace
resources/web-environment.

Fixes the build for the lexical model compiler tools to remove refs to
package.json version and use keyman-version instead.

More fixes coming in a follow-up.
2022-04-17 06:47:39 +10:00
..
.gitignore chore(web): replace lerna with npm workspaces and ts projects 2022-04-12 21:02:33 +10:00
build.sh fix(developer): npm publish with correct tier 2022-02-13 14:18:42 +07:00
index.d.ts feat(web): prediction casing follows current layer 2022-04-08 16:14:01 +10:00
package-lock.json auto: increment beta version to 15.0.233 2022-04-11 14:02:20 -04:00
package.json chore(web): move version from package.json to keyman-version package 2022-04-17 06:47:39 +10:00
README.md chore(web): replace lerna with npm workspaces and ts projects 2022-04-12 21:02:33 +10:00
test.ts refactor(common/lmlayer): move @keymanapp/models-types to its new home 2020-05-19 19:14:15 -06:00
tsconfig.json chore(web): replace lerna with npm workspaces and ts projects 2022-04-12 21:02:33 +10:00

@keymanapp/models-types

Declares TypeScript types and interfaces required to define Lexical Models, Word breaking functions, and all things in between.

Install

(see below if you are working in the keymanapp/keyman repo!)

npm install --save-dev @keymanapp/models-types

Usage

Say you are creating a custom lexical model. Then import this module in your lexical model file!

// my-nifty-model.ts

import "@keymanapp/models-types";

export class MyNiftyClass implements LexicalModel {
  configure(capabilities: Capabilities): Configuration {
    // TODO: implement me!
    throw new Error("Method not implemented.");
  }
  predict(transform: Transform, context: Context): ProbabilityMass<Suggestion>[] {
    // TODO: implement me!
    throw new Error("Method not implemented.");
  }
  wordbreak(context: Context): string {
    // TODO: implement me!
    throw new Error("Method not implemented.");
  }
  punctuation?: LexicalModelPunctuation;
}

If your are creating a custom word breaker, you would do the same:

import "@keymanapp/models-types";

export let myShinyWordBreaker: WordBreakingFunction;
myShinyWordBreaker = function (phrase: string): Span[] {
  // TODO: implement me!
  throw new Error("Function not implemented")
}

Look at index.d.ts for documentation on each and every type!

Usage within keymanapp/keyman repo

To use it in other subprojects within keymanapp/keyman, ensure that this package is linked using "*". Add this dependency to your subproject like so:

  "dependencies": {
    "@keymanapp/models-types": "*",
  }