1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-08 23:35:31 +02:00

chore(app): add typescript check and fix errors [EE-3014] (#6822)

This commit is contained in:
Chaim Lev-Ari 2022-04-27 14:10:20 +03:00 committed by GitHub
parent b3e035d353
commit 842044e759
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 47 additions and 25 deletions

View file

@ -1,8 +1,9 @@
import { r2a } from '@/react-tools/react2angular';
import { Settings } from '../settings.service';
import { EdgeComputeSettings } from './EdgeComputeSettings';
import { AutomaticEdgeEnvCreation } from './AutomaticEdgeEnvCreation';
import { Settings } from './types';
interface Props {
settings: Settings;

View file

@ -42,9 +42,9 @@ export interface Settings {
AgentSecret: string;
EdgePortainerUrl: string;
EdgeAgentCheckinInterval: number;
EdgePingInterval: string;
EdgeSnapshotInterval: string;
EdgeCommandInterval: string;
EdgePingInterval: number;
EdgeSnapshotInterval: number;
EdgeCommandInterval: number;
}
export async function getSettings() {