style: 完善ts

This commit is contained in:
roymondchen 2024-09-05 12:07:15 +08:00 committed by roymondchen
parent 45d676f38f
commit f17ff8e58b
2 changed files with 14 additions and 13 deletions

View File

@ -155,6 +155,19 @@ export default class StageRender extends EventEmitter {
return getElById()(this.getDocument(), id);
}
public postTmagicRuntimeReady() {
this.contentWindow = this.iframe?.contentWindow as RuntimeWindow;
this.contentWindow.magic = this.getMagicApi();
this.contentWindow.postMessage(
{
tmagicRuntimeReady: true,
},
'*',
);
}
/**
*
*/
@ -236,17 +249,4 @@ export default class StageRender extends EventEmitter {
injectStyle(this.contentWindow.document, style);
};
private postTmagicRuntimeReady() {
this.contentWindow = this.iframe?.contentWindow as RuntimeWindow;
this.contentWindow.magic = this.getMagicApi();
this.contentWindow.postMessage(
{
tmagicRuntimeReady: true,
},
'*',
);
}
}

View File

@ -46,6 +46,7 @@ export interface ColumnConfig<T = any> {
type?: 'popover' | 'expand' | 'component' | string | ((value: any, row: T) => string);
text?: string;
prop?: string;
name?: string;
showHeader?: boolean;
table?: ColumnConfig[];
formatter?: 'datetime' | ((item: any, row: T) => any);