Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
20 lines
649 B
Plaintext
20 lines
649 B
Plaintext
import { CSSParsedDeclaration } from '../css/index';
|
|
import { TextContainer } from './text-container';
|
|
import { Bounds } from '../css/layout/bounds';
|
|
import { Context } from '../core/context';
|
|
export declare const enum FLAGS {
|
|
CREATES_STACKING_CONTEXT = 2,
|
|
CREATES_REAL_STACKING_CONTEXT = 4,
|
|
IS_LIST_OWNER = 8,
|
|
DEBUG_RENDER = 16
|
|
}
|
|
export declare class ElementContainer {
|
|
protected readonly context: Context;
|
|
readonly styles: CSSParsedDeclaration;
|
|
readonly textNodes: TextContainer[];
|
|
readonly elements: ElementContainer[];
|
|
bounds: Bounds;
|
|
flags: number;
|
|
constructor(context: Context, element: Element);
|
|
}
|