This commit is contained in:
yinsx
2026-01-05 10:14:33 +08:00
commit cf0b049abf
33 changed files with 3130 additions and 0 deletions

View File

@ -0,0 +1,13 @@
type OptionalCallback = (() => void) | null | undefined;
type ErrorCallback = ((error?: unknown) => void) | null | undefined;
/**
* 共享运行时配置对象
*/
export const AppConfig = {
container: 'renderDom',
modelUrlList: [] as string[],
success: null as OptionalCallback,
error: null as ErrorCallback
};