1 | import FileBlob from './file-blob';
|
2 | import FileFsRef from './file-fs-ref';
|
3 | import FileRef from './file-ref';
|
4 | import { Lambda, createLambda, getLambdaOptionsFromFunction } from './lambda';
|
5 | import { Prerender } from './prerender';
|
6 | import download, { DownloadedFiles, isSymbolicLink } from './fs/download';
|
7 | import getWriteableDirectory from './fs/get-writable-directory';
|
8 | import glob, { GlobOptions } from './fs/glob';
|
9 | import rename from './fs/rename';
|
10 | import { execAsync, spawnAsync, execCommand, spawnCommand, walkParentDirs, getScriptName, installDependencies, runPackageJsonScript, runNpmInstall, runBundleInstall, runPipInstall, runShellScript, getNodeVersion, getSpawnOptions, getNodeBinPath } from './fs/run-user-scripts';
|
11 | import { getLatestNodeVersion, getDiscontinuedNodeVersions } from './fs/node-version';
|
12 | import streamToBuffer from './fs/stream-to-buffer';
|
13 | import shouldServe from './should-serve';
|
14 | import debug from './debug';
|
15 | export { FileBlob, FileFsRef, FileRef, Lambda, createLambda, Prerender, download, DownloadedFiles, getWriteableDirectory, glob, GlobOptions, rename, execAsync, spawnAsync, getScriptName, installDependencies, runPackageJsonScript, execCommand, spawnCommand, walkParentDirs, getNodeBinPath, runNpmInstall, runBundleInstall, runPipInstall, runShellScript, getNodeVersion, getLatestNodeVersion, getDiscontinuedNodeVersions, getSpawnOptions, streamToBuffer, shouldServe, debug, isSymbolicLink, getLambdaOptionsFromFunction, };
|
16 | export { detectBuilders, detectOutputDirectory, detectApiDirectory, detectApiExtensions, } from './detect-builders';
|
17 | export { detectFramework } from './detect-framework';
|
18 | export { DetectorFilesystem } from './detectors/filesystem';
|
19 | export { readConfigFile } from './fs/read-config-file';
|
20 | export * from './schemas';
|
21 | export * from './types';
|
22 | export * from './errors';
|
23 |
|
24 |
|
25 |
|
26 | export declare const isOfficialRuntime: (desired: string, name?: string | undefined) => boolean;
|
27 | export declare const isStaticRuntime: (name?: string | undefined) => boolean;
|
28 |
|
29 |
|
30 |
|
31 |
|
32 | export declare const getPlatformEnv: (name: string) => string | undefined;
|