12 lines
222 B
JavaScript
12 lines
222 B
JavaScript
export class ForceRefreshChild extends JSWindowActorChild {
|
|
constructor() {
|
|
super();
|
|
}
|
|
|
|
handleEvent(evt) {
|
|
this.sendAsyncMessage("test:event", {
|
|
type: evt.type,
|
|
detail: evt.details,
|
|
});
|
|
}
|
|
}
|