mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-01 22:09:29 +08:00
12 lines
450 B
Text
12 lines
450 B
Text
import Node from './shared/Node';
|
|
import Expression from './shared/Expression';
|
|
import { TemplateNode } from '../../interfaces';
|
|
import TemplateScope from './shared/TemplateScope';
|
|
import Component from '../Component';
|
|
export default class Style extends Node {
|
|
type: 'Style';
|
|
name: string;
|
|
expression: Expression;
|
|
should_cache: boolean;
|
|
constructor(component: Component, parent: Node, scope: TemplateScope, info: TemplateNode);
|
|
}
|