@pie-players/pie-tool-dictionary 0.3.67 → 0.3.69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +13 -1
- package/dist/tool-dictionary.js +662 -659
- package/package.json +5 -5
- package/dist/tsconfig.tsbuildinfo +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -1 +1,13 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* pie-tool-dictionary - PIE Assessment Tool
|
|
3
|
+
*
|
|
4
|
+
* Importing this package registers `<pie-tool-dictionary>`. The build entry is the
|
|
5
|
+
* component, so this file carries types only — a runtime export here would not exist
|
|
6
|
+
* in the built bundle.
|
|
7
|
+
*
|
|
8
|
+
* The lookup contract is public because a host supplies the resolver: PIE ships no
|
|
9
|
+
* dictionary endpoint, since the corpus behind one is licensed per programme. Set the
|
|
10
|
+
* `endpoint` attribute for the built-in POST shaping, or assign the element's `lookup`
|
|
11
|
+
* property to use a client of your own.
|
|
12
|
+
*/
|
|
13
|
+
export type { DictionaryEntry, DictionaryLookup, DictionaryLookupRequest, DictionaryLookupResult, DictionarySense, } from './lookup.js';
|