mediacms/frontend/packages/scripts/lib/interfaces/OptionsTypes.ts

21 wiersze
357 B
TypeScript
Executable File

import { ConfigType } from '../config';
export interface DevOptionsType {
env: string,
host: string,
port: number,
config: ConfigType,
}
export interface BuildOptionsType {
env: string,
config: ConfigType,
}
export interface AnalyzerOptionsType {
env: string,
host: string,
port: number,
mode: string,
config: ConfigType,
}