nehan
Version:
Html layout engine for paged-media written in Typescript
16 lines (15 loc) • 438 B
TypeScript
import { CssStyleSheet } from "./public-api";
export interface SemanticStyleCreateOptions {
all?: boolean;
listStyle?: boolean;
textAlign?: boolean;
textOrientation?: boolean;
textCombine?: boolean;
textEmphasis?: boolean;
logicalFloat?: boolean;
pageBreak?: boolean;
typography?: boolean;
}
export declare class SemanticStyle {
static create(options: SemanticStyleCreateOptions): CssStyleSheet;
}