mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-03 10:32:40 +00:00
10 lines
264 B
TypeScript
10 lines
264 B
TypeScript
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
// All Rights Reserved. See LICENSE file for details.
|
|
|
|
export interface ConsoleCommand {
|
|
command: string;
|
|
content?: string;
|
|
showLiveLogs?: boolean;
|
|
rewriteContentWithProcessLogsOnDeploy?: string;
|
|
}
|