impress.me
Version:
Create impress.js presentations from markdown documents with style
17 lines (16 loc) • 424 B
TypeScript
import { Translation } from './translation';
export declare enum Shape {
Circle = "circle",
Square = "square",
Rounded = "rounded",
None = "none"
}
export interface ShapeConfig {
width: number;
height: number;
offset: Translation;
parentOffset: Translation;
siblingOffset: Translation;
}
export declare const shapeConfig: Record<Shape, ShapeConfig>;
export declare const shapes: Shape[];