UNPKG

mira-app-server

Version:

Mira Server - standalone server application using mira-app-core

16 lines 941 B
import { MiraServer } from './MiraServer'; import ws from 'ws'; import { ServerPluginManager } from './ServerPluginManager'; import { ServerPlugin } from './ServerPlugin'; import { MiraWebsocketServer } from './WebSocketServer'; import { MiraHttpServer } from './server'; import { ThumbnailService } from './services/ThumbnailService'; import { MetadataService } from './services/MetadataService'; import express from 'express'; declare function startServer(): Promise<MiraServer>; export { MiraServer, startServer, ServerPluginManager, ServerPlugin, MiraWebsocketServer, MiraHttpServer, ThumbnailService, MetadataService, express, ws }; export type { ThumbnailGenerator } from './services/ThumbnailService'; export type { MetadataRule } from './services/MetadataService'; export type { PluginRouteDefinition } from './ServerPlugin'; export type { ILibraryServerData } from 'mira-app-core/storage/sqlite'; //# sourceMappingURL=index.d.ts.map