UNPKG

547 BTypeScriptView Raw
1import type { CSSProperty } from '../CSSProperty';
2import type { CSSKeywordValue } from '../cssom';
3import type { DisplayObject } from '../../display-objects';
4/**
5 * should
6 *
7 * @see https://developer.mozilla.org/zh-CN/docs/Web/CSS/visibility
8 * @see https://www.w3.org/TR/CSS21/visufx.html#visibility
9 *
10 */
11export declare class CSSPropertyVisibility implements Partial<CSSProperty<CSSKeywordValue, CSSKeywordValue>> {
12 calculator(name: string, oldParsed: CSSKeywordValue, parsed: CSSKeywordValue, object: DisplayObject): CSSKeywordValue;
13}