28 lines
528 B
TypeScript
28 lines
528 B
TypeScript
/**
|
|
* Host-configurable Decodal evaluator and language service for JavaScript.
|
|
*
|
|
* @module
|
|
*/
|
|
export {
|
|
DecodalLanguageService,
|
|
default,
|
|
evaluate,
|
|
initSync,
|
|
} from './decodal_wasm.js';
|
|
|
|
export type {
|
|
DecodalAbstractDescriptor,
|
|
DecodalArrayDescriptor,
|
|
DecodalMapDescriptor,
|
|
DecodalConstraint,
|
|
DecodalEnvironment,
|
|
DecodalHostValue,
|
|
DecodalImportCandidate,
|
|
DecodalLoadedImport,
|
|
DecodalPrimitiveDescriptor,
|
|
DecodalPrimitiveType,
|
|
InitInput,
|
|
InitOutput,
|
|
SyncInitInput,
|
|
} from './decodal_wasm.js';
|