mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-23 00:59:13 +08:00
12 lines
467 B
Text
12 lines
467 B
Text
import Node from './shared/Node';
|
|
import Expression from './shared/Expression';
|
|
import Component from '../Component';
|
|
import TemplateScope from './shared/TemplateScope';
|
|
import { TemplateNode } from '../../interfaces';
|
|
import Element from './Element';
|
|
export default class Animation extends Node {
|
|
type: 'Animation';
|
|
name: string;
|
|
expression: Expression;
|
|
constructor(component: Component, parent: Element, scope: TemplateScope, info: TemplateNode);
|
|
}
|