UNPKG

488 BTypeScriptView Raw
1import type { RequiredDeep } from 'type-fest';
2import type { MermaidConfig } from './config.type.js';
3/**
4 * Default mermaid configuration options.
5 *
6 * Please see the Mermaid config JSON Schema for the default JSON values.
7 * Non-JSON JS default values are listed in this file, e.g. functions, or
8 * `undefined` (explicitly set so that `configKeys` finds them).
9 */
10declare const config: RequiredDeep<MermaidConfig>;
11export declare const configKeys: Set<string>;
12export default config;