import { $ctx } from '@milkdown/utils' import type { StreamingConfig } from './types' import { withMeta } from './__internal__/with-meta' /// The configuration context for the streaming plugin. export const streamingConfig = $ctx( { throttleMs: 100, scrollFollow: true, diffReviewOnEnd: false, ignoreAttrs: { heading: ['id'] }, }, 'streamingConfig' ) withMeta(streamingConfig, { displayName: 'Ctx', group: 'Streaming', })