@edc4it/reveal.js-railroad
Version:
[](#)
15 lines (13 loc) • 386 B
TypeScript
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>;
};