Skip to content

Latest commit

 

History

History
39 lines (34 loc) · 1.37 KB

scribing.paragraphstylebase.md

File metadata and controls

39 lines (34 loc) · 1.37 KB

Home > scribing > ParagraphStyleBase

ParagraphStyleBase variable

The base record class for ParagraphStyle

Signature:

ParagraphStyleBase: import("paratype").RecordConstructor<Partial<{
    alignment: "start" | "center" | "end" | "justify";
    direction: "ltr" | "rtl";
    variant: "code" | "normal" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "title" | "subtitle" | "preamble";
    lineSpacing: number;
    spaceBefore: number;
    spaceAfter: number;
    listLevel: number;
    listMarker: ListMarkerKind;
    hideListMarker: boolean;
    listCounter: number | "auto" | "reset" | "resume";
    listCounterPrefix: string;
    listCounterSuffix: string;
}>, Object, Partial<{
    alignment: "start" | "center" | "end" | "justify";
    direction: "ltr" | "rtl";
    variant: "code" | "normal" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "title" | "subtitle" | "preamble";
    lineSpacing: number;
    spaceBefore: number;
    spaceAfter: number;
    listLevel: number;
    listMarker: ListMarkerKind;
    hideListMarker: boolean;
    listCounter: number | "auto" | "reset" | "resume";
    listCounterPrefix: string;
    listCounterSuffix: string;
}>>