7 lines
231 B
TypeScript
7 lines
231 B
TypeScript
import type { SeekingHints } from './seeking-hints';
|
|
import type { ParserState } from './state/parser-state';
|
|
export declare const setSeekingHints: ({ hints, state, }: {
|
|
hints: SeekingHints;
|
|
state: ParserState;
|
|
}) => void;
|