re-add addCustomEvent function via function property

This commit is contained in:
Yanzhen Yu
2026-04-01 12:00:00 +08:00
parent f872ed143b
commit 2ac8634607
4 changed files with 24 additions and 18 deletions

View File

@@ -1,4 +1,6 @@
import { recordOptions, listenerHandler } from '../types';
export declare function addCustomEvent<T>(tag: string, payload: T): void;
declare function record(options?: recordOptions): listenerHandler | undefined;
declare namespace record {
var addCustomEvent: <T>(tag: string, payload: T) => void;
}
export default record;