UNPKG

nehan

Version:

Html layout engine for paged-media written in Typescript

10 lines (9 loc) 348 B
import { NehanElement } from "./public-api"; export declare type ListStylePositionValue = "inside" | "outside"; export declare class ListStylePosition { value: ListStylePositionValue; constructor(value: ListStylePositionValue); isOutside(): boolean; isInside(): boolean; static load(element: NehanElement): ListStylePosition; }