UNPKG

@edc4it/reveal.js-railroad

Version:

[![Version](https://img.shields.io/npm/v/@edc4it/reveal.js-railroad)](#)

15 lines (13 loc) 386 B
import { DeepPartial } from './util/utility-types.ts'; import { Options as RevealOptions } from 'reveal.js'; export type Options = { bg: string; textFill: string; pathStroke: string; rectFill: string; rectStroke: string; }; export declare const defaultOptions: Options; export type AugmentedRevealOptions = RevealOptions & { railroad?: DeepPartial<Options>; };