tav-ui
Version:
9 lines (8 loc) • 336 B
TypeScript
import { type ComputedRef } from 'vue';
import { type EditorProps } from '../typings';
export declare function useEditorIframeCommunication(options: {
mergedProps: ComputedRef<EditorProps>;
}): {
registryInnerChannel: (editor: any) => void;
registryOuterChannel: (editor: any, callback: (...args: any[]) => any) => void;
};