mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 04:39:31 +08:00
12 lines
500 B
Text
12 lines
500 B
Text
import TemplateScope from './shared/TemplateScope';
|
|
import AbstractBlock from './shared/AbstractBlock';
|
|
import AwaitBlock from './AwaitBlock';
|
|
import Component from '../Component';
|
|
import { TemplateNode } from '../../interfaces';
|
|
import ConstTag from './ConstTag';
|
|
export default class ThenBlock extends AbstractBlock {
|
|
type: 'ThenBlock';
|
|
scope: TemplateScope;
|
|
const_tags: ConstTag[];
|
|
constructor(component: Component, parent: AwaitBlock, scope: TemplateScope, info: TemplateNode);
|
|
}
|