UNPKG

@coko/server

Version:

Reusable server for use by Coko's projects

6 lines 388 B
import ChatChannel from './chatChannel.model'; import { QueryResult, TrxOption } from '../base.model'; declare const getChatChannel: (id: any, options?: TrxOption) => Promise<ChatChannel>; declare const getChatChannels: (where?: {}, options?: TrxOption) => Promise<QueryResult<ChatChannel>>; export { getChatChannel, getChatChannels }; //# sourceMappingURL=chatChannel.controller.d.ts.map