13 lines
523 B
TypeScript
13 lines
523 B
TypeScript
/**
|
|
* 旧 custom world 结果页预览兼容出口。
|
|
* 额外单独拆一个 preview 兼容文件,避免预览别名继续堆回 customWorldAgent.ts 聚合层。
|
|
*/
|
|
|
|
export type {
|
|
RpgCreationPreview as CustomWorldResultPreview,
|
|
RpgCreationPreviewBlocker as CustomWorldResultPreviewBlocker,
|
|
RpgCreationPreviewEnvelope as CustomWorldResultPreviewEnvelope,
|
|
RpgCreationPreviewFinding as CustomWorldResultPreviewFinding,
|
|
RpgCreationPreviewSource as CustomWorldResultPreviewSource,
|
|
} from './rpgCreationPreview';
|