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
33 lines
1.4 KiB
Plaintext
33 lines
1.4 KiB
Plaintext
import { ElementContainer } from '../dom/element-container';
|
|
import { Path } from './path';
|
|
export declare class BoundCurves {
|
|
readonly topLeftBorderDoubleOuterBox: Path;
|
|
readonly topRightBorderDoubleOuterBox: Path;
|
|
readonly bottomRightBorderDoubleOuterBox: Path;
|
|
readonly bottomLeftBorderDoubleOuterBox: Path;
|
|
readonly topLeftBorderDoubleInnerBox: Path;
|
|
readonly topRightBorderDoubleInnerBox: Path;
|
|
readonly bottomRightBorderDoubleInnerBox: Path;
|
|
readonly bottomLeftBorderDoubleInnerBox: Path;
|
|
readonly topLeftBorderStroke: Path;
|
|
readonly topRightBorderStroke: Path;
|
|
readonly bottomRightBorderStroke: Path;
|
|
readonly bottomLeftBorderStroke: Path;
|
|
readonly topLeftBorderBox: Path;
|
|
readonly topRightBorderBox: Path;
|
|
readonly bottomRightBorderBox: Path;
|
|
readonly bottomLeftBorderBox: Path;
|
|
readonly topLeftPaddingBox: Path;
|
|
readonly topRightPaddingBox: Path;
|
|
readonly bottomRightPaddingBox: Path;
|
|
readonly bottomLeftPaddingBox: Path;
|
|
readonly topLeftContentBox: Path;
|
|
readonly topRightContentBox: Path;
|
|
readonly bottomRightContentBox: Path;
|
|
readonly bottomLeftContentBox: Path;
|
|
constructor(element: ElementContainer);
|
|
}
|
|
export declare const calculateBorderBoxPath: (curves: BoundCurves) => Path[];
|
|
export declare const calculateContentBoxPath: (curves: BoundCurves) => Path[];
|
|
export declare const calculatePaddingBoxPath: (curves: BoundCurves) => Path[];
|