@crowdin/app-project-module
Version:
Module that generates for you all common endpoints for serving standalone Crowdin App
16 lines (15 loc) • 554 B
TypeScript
import { ClientConfig, Config } from '../../types';
import { IntegrationTestConfig } from './types';
export declare const mockProjectId = 1;
export declare const mockStoragesById: {
[key: string]: {
name: string;
data: unknown;
};
};
export declare const mockFiles: any[];
export declare const mockDirectories: any[];
export declare const runProjectIntegrationTests: ({ getAppConfig, integrationTestConfig, }: {
getAppConfig: () => Promise<Config | ClientConfig>;
integrationTestConfig: IntegrationTestConfig;
}) => void;