diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-07-01 16:37:50 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-07-01 16:37:50 +0200 |
commit | ce9e0788317b25e5d297ed38d9fed0754a341288 (patch) | |
tree | 29563a39c73ded16cd93eb7b5c5664d1ece944ac /core/api.ts | |
parent | 8ff39cbe6300ca479584fe7d85ff03a1f65bc9b0 (diff) |
WIP sentence API
Diffstat (limited to 'core/api.ts')
-rw-r--r-- | core/api.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/core/api.ts b/core/api.ts index 51f976a..0720c8b 100644 --- a/core/api.ts +++ b/core/api.ts @@ -1,4 +1,5 @@ -import { ParseResult } from "../language/types.ts"; +import { InputSentenceProps, ParseResult } from "../language/types.ts"; +import { DeepPartial } from "../util/types.ts"; /** * @summary Core interface @@ -12,6 +13,6 @@ export default abstract class Core { abstract ready: Promise<void>; /** @summary parse sentence */ - abstract parseSentence(input: string): Promise<ParseResult>; + abstract parseSentence(input: string, options?: DeepPartial<InputSentenceProps>): Promise<ParseResult>; }; |