Urara-Blog/node_modules/.pnpm-store/v3/files/97/3f6b42b38c8deecb93a78cb9e700844330bfd74b63f81e0ceabbcc75a0b3793b573fa77b22f32e27eadc3ee36cf4a27a042c97b1d646fd36108c1ecda15e19
2022-08-14 01:14:53 +08:00

12 lines
489 B
Text

import AbstractBlock from './shared/AbstractBlock';
import Component from '../Component';
import TemplateScope from './shared/TemplateScope';
import { TemplateNode } from '../../interfaces';
import Node from './shared/Node';
import ConstTag from './ConstTag';
export default class ElseBlock extends AbstractBlock {
type: 'ElseBlock';
scope: TemplateScope;
const_tags: ConstTag[];
constructor(component: Component, parent: Node, scope: TemplateScope, info: TemplateNode);
}