HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux ip-172-31-42-149 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 07:00:04 UTC 2025 aarch64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //proc/self/root/usr/local/lib/node_modules/@ionic/cli/lib/start.d.ts
/// <reference types="node" />
import { CommandLineOptions, IConfig, ILogger, ProjectType, StarterList, StarterManifest, StarterTemplate } from '../definitions';
export declare const STARTER_BASE_URL = "https://d2ql0qc7j8u4b2.cloudfront.net";
export interface BaseAppSchema {
    projectId: string;
    projectDir: string;
    packageId?: string;
    appflowId?: string;
}
export interface NewAppSchema extends BaseAppSchema {
    cloned: false;
    name: string;
    type: ProjectType;
    template: string;
    themeColor?: string;
    appIcon?: Buffer;
    splash?: Buffer;
}
export interface ClonedAppSchema extends BaseAppSchema {
    cloned: true;
    url: string;
}
export declare type AppSchema = NewAppSchema | ClonedAppSchema;
export declare function verifyOptions(options: CommandLineOptions, { log }: {
    log: ILogger;
}): void;
export declare function readStarterManifest(p: string): Promise<StarterManifest>;
export declare function getAdvertisement(): string;
export declare function getStarterList(config: IConfig, tag?: string): Promise<StarterList>;
export declare function getStarterProjectTypes(): string[];
export interface SupportedFramework {
    name: string;
    type: ProjectType;
    description: string;
}
export declare const SUPPORTED_FRAMEWORKS: readonly SupportedFramework[];
export declare const STARTER_TEMPLATES: StarterTemplate[];