mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 18:39:29 +08:00
22 lines
602 B
Text
22 lines
602 B
Text
/**
|
|
* @param {Options} [options]
|
|
* @returns {MinimalDuplex}
|
|
*/
|
|
export function stream(
|
|
options?: import('micromark-util-types').Options | undefined
|
|
): MinimalDuplex
|
|
export type Options = import('micromark-util-types').Options
|
|
export type Value = import('micromark-util-types').Value
|
|
export type Encoding = import('micromark-util-types').Encoding
|
|
export type Callback = (error?: Error | undefined) => void
|
|
export type MinimalDuplex = Omit<
|
|
NodeJS.ReadableStream & NodeJS.WritableStream,
|
|
| 'read'
|
|
| 'setEncoding'
|
|
| 'pause'
|
|
| 'resume'
|
|
| 'isPaused'
|
|
| 'unpipe'
|
|
| 'unshift'
|
|
| 'wrap'
|
|
>
|