UNPKG

pptx-automizer

Version:

A template based pptx generator

20 lines (19 loc) 472 B
import { TextStyle } from '../types/modify-types'; export interface MultiTextParagraph { paragraph: { level?: number; bullet?: boolean; alignment?: 'l' | 'ctr' | 'r' | 'just'; lineSpacing?: number; spaceBefore?: number; spaceAfter?: number; indent?: number; marginLeft?: number; }; text?: string; style?: TextStyle; textRuns: { text: string; style?: TextStyle; }[]; }