@crowdin/app-project-module
Version:
Module that generates for you all common endpoints for serving standalone Crowdin App
5 lines (4 loc) • 400 B
TypeScript
/// <reference types="qs" />
import express from 'express';
import { UiModule } from '../types';
export default function handle(moduleConfig: UiModule): (req: import("../types").CrowdinClientRequest | express.Request<import("express-serve-static-core").ParamsDictionary, any, any, import("qs").ParsedQs, Record<string, any>>, res: express.Response<any, Record<string, any>>, next: Function) => void;