nehan
Version:
Html layout engine for paged-media written in Typescript
10 lines (9 loc) • 352 B
TypeScript
export declare class NativeStyleMap {
_map: Map<string, string>;
constructor();
set(key: string, value: string): NativeStyleMap;
delete(key: string): NativeStyleMap;
forEach(fn: (value: string, key: string) => void): void;
mergeTo(dst: NativeStyleMap): NativeStyleMap;
applyTo(style: CSSStyleDeclaration): NativeStyleMap;
}