template中的小细节

This commit is contained in:
Xu Chang 2024-04-30 17:27:50 +08:00
parent c1063a173b
commit c2c1db1b25
1 changed files with 11 additions and 11 deletions

View File

@ -20,17 +20,17 @@ import { BasicFeatures } from 'oak-frontend-base/es/features';
import DebugConnector from 'oak-frontend-base/es/utils/DebugConnector';
export default function initialize() {
const totalTriggers = mergeConcatMany([triggers] as Array<typeof triggers>),
totalAspects = mergeConcatMany([aspects] as Array<typeof aspects>),
totalCheckers = mergeConcatMany([checkers] as Array<typeof checkers>),
totalWatchers = mergeConcatMany([watchers] as Array<typeof watchers>),
totalTimers = mergeConcatMany([timers] as Array<typeof timers>),
totalStartRoutines = mergeConcatMany([startRoutines] as Array<typeof startRoutines>),
totalData = mergeConcatMany([data] as Array<typeof data>),
totalImportations = mergeConcatMany([importations] as Array<typeof importations>),
totalExportations = mergeConcatMany([exportations] as Array<typeof exportations>),
totalCommon = mergeConcatMany([common] as Array<typeof common>),
totalRender = mergeConcatMany([render] as Array<typeof render>);
const totalTriggers = mergeConcatMany([triggers] as Array<typeof triggers>)!,
totalAspects = mergeConcatMany([aspects] as Array<typeof aspects>)!,
totalCheckers = mergeConcatMany([checkers] as Array<typeof checkers>)!,
totalWatchers = mergeConcatMany([watchers] as Array<typeof watchers>)!,
totalTimers = mergeConcatMany([timers] as Array<typeof timers>)!,
totalStartRoutines = mergeConcatMany([startRoutines] as Array<typeof startRoutines>)!,
totalData = mergeConcatMany([data] as Array<typeof data>)!,
totalImportations = mergeConcatMany([importations] as Array<typeof importations>)!,
totalExportations = mergeConcatMany([exportations] as Array<typeof exportations>)!,
totalCommon = mergeConcatMany([common] as Array<typeof common>)!,
totalRender = mergeConcatMany([render] as Array<typeof render>)!;
const debugConnector = new DebugConnector<EntityDict, BackendRuntimeContext, FrontendRuntimeContext>(
storageSchema,