mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 15:49:31 +08:00
16 lines
529 B
Text
16 lines
529 B
Text
import Attribute from '../../../nodes/Attribute';
|
|
import Block from '../../Block';
|
|
import AttributeWrapper from './Attribute';
|
|
import ElementWrapper from '../Element';
|
|
import Expression from '../../../nodes/shared/Expression';
|
|
import Text from '../../../nodes/Text';
|
|
export interface StyleProp {
|
|
key: string;
|
|
value: Array<Text | Expression>;
|
|
important: boolean;
|
|
}
|
|
export default class StyleAttributeWrapper extends AttributeWrapper {
|
|
node: Attribute;
|
|
parent: ElementWrapper;
|
|
render(block: Block): void;
|
|
}
|