ionic
Version:
A tool for creating and developing Ionic Framework mobile apps.
11 lines (10 loc) • 731 B
TypeScript
import { CommandInstanceInfo, CommandLineInputs, CommandLineOptions, CommandMetadata, CommandPreRun } from '../../definitions';
import { CordovaCommand } from './base';
export declare class ResourcesCommand extends CordovaCommand implements CommandPreRun {
getMetadata(): Promise<CommandMetadata>;
preRun(inputs: CommandLineInputs, options: CommandLineOptions, runinfo: CommandInstanceInfo): Promise<void>;
getBuildPlatforms(): Promise<string[]>;
run(inputs: CommandLineInputs, options: CommandLineOptions): Promise<void>;
runCordovaRes(platform: string | undefined, options: CommandLineOptions): Promise<void>;
runResourceServer(platform: string | undefined, options: CommandLineOptions): Promise<void>;
}