UNPKG

impress.me

Version:

Create impress.js presentations from markdown documents with style

11 lines (10 loc) 255 B
import { Transformation } from './transformation'; export interface SlideNode { parent?: SlideNode; children: SlideNode[]; depth: number; text: string; pos?: Transformation; attrs: Record<string, string>; classes?: string[]; }