doxdox-core
Version:
Core package for doxdox.
7 lines (6 loc) • 348 B
TypeScript
export * from './types.js';
export * from './utils.js';
export * from './loader.js';
import { Doc, File, Options } from './types.js';
declare const _default: (cwd: string, paths: string[], parser: (cwd: string, path: string) => Promise<File>, renderer: (doc: Doc) => Promise<string>, options?: Options) => Promise<string>;
export default _default;