This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
TripSit_Suite/node_modules/remark/types/index.d.ts

18 lines
504 B
TypeScript

// TypeScript Version: 3.0
import unified = require('unified')
import remarkParse = require('remark-parse')
import remarkStringify = require('remark-stringify')
declare namespace remark {
type RemarkOptions = remarkParse.RemarkParseOptions &
remarkStringify.RemarkStringifyOptions
type PartialRemarkOptions = remarkParse.PartialRemarkParseOptions &
remarkStringify.PartialRemarkStringifyOptions
}
declare function remark(): unified.Processor<remark.PartialRemarkOptions>
export = remark