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:
parent
b3e035d353
commit
842044e759
6 changed files with 47 additions and 25 deletions
|
@ -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;
|
||||
|
|
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue