automate-electron-ipc
Version:
Node library for automating the generation of IPC components for Electron apps.
15 lines (14 loc) • 572 B
JavaScript
/*
* Apache License 2.0
*
* Copyright (c) 2024, Mattias Aabmets
*
* The contents of this file are subject to the terms and conditions defined in the License.
* You may not use, modify, or distribute this file except in compliance with the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
import { MainBindingsWriter } from "./main-bindings.js";
import { PreloadBindingsWriter } from "./preload-bindings.js";
import { RendererTypesWriter } from "./renderer-types.js";
export default { MainBindingsWriter, PreloadBindingsWriter, RendererTypesWriter };