seroval
Version:
Stringify JS values
10 lines (7 loc) • 374 B
text/typescript
import type { BaseParserContextOptions } from '../context/parser';
import BaseAsyncParserContext from '../context/parser/async';
import type { SerovalMode } from '../plugin';
export type AsyncParserContextOptions = Omit<BaseParserContextOptions, 'refs'>;
export default class AsyncParserContext extends BaseAsyncParserContext {
readonly mode: SerovalMode = 'vanilla';
}