nehan
Version:
Html layout engine for paged-media written in Typescript
11 lines (10 loc) • 376 B
TypeScript
import { NehanElement } from "./public-api";
export declare type TextOrientationValue = "mixed" | "upright" | "sideways";
export declare class TextOrientation {
value: TextOrientationValue;
static load(element: NehanElement): TextOrientation;
constructor(value: TextOrientationValue);
isSideways(): boolean;
isUpright(): boolean;
isMixed(): boolean;
}