mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 23:29:30 +08:00
9 lines
406 B
Text
9 lines
406 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';
|
|
export default class PendingBlock extends AbstractBlock {
|
|
type: 'PendingBlock';
|
|
constructor(component: Component, parent: Node, scope: TemplateScope, info: TemplateNode);
|
|
}
|