5 lines
235 B
TypeScript
5 lines
235 B
TypeScript
import { recordOptions, listenerHandler } from '../types';
|
|
export declare function addCustomEvent<T>(tag: string, payload: T): void;
|
|
declare function record(options?: recordOptions): listenerHandler | undefined;
|
|
export default record;
|