UNPKG

impress.me

Version:

Create impress.js presentations from markdown documents with style

10 lines (9 loc) 256 B
import { Shape } from './shape'; import { Strategy } from './strategy'; export interface Theme { themeName: string; shape: Shape; strategy: Strategy; } export declare const themeMap: Record<string, Theme>; export declare const themes: Theme[];