UNPKG

@kontikijs/socket

Version:

A server socket and client for Kontiki JS.

15 lines (14 loc) 465 B
/** * @title Kontiki JS / Socket * @description Sockets for Kontiki JS. * * @author Daniel K. Hendricks * @license MIT (Please read the attached license in root) * @copyright (c) 2021-present, Daniel K. Hendricks * * @see https://kontikijs.org * @support https://kontikijs.com */ import { Plugin } from 'vite'; import { ServerConfigExport } from './server/types'; export declare const socket: (config?: Partial<ServerConfigExport> | undefined) => Plugin;