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