hisptz/90-90-90-cascade-graph-widget

View on GitHub
src/app/store/states/system-info.state.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { BaseState, initialBaseState } from './base.state';
import { SystemInfo } from 'src/app/core/models/system-info.model';

export interface SystemInfoState extends BaseState {
  systemInfo: SystemInfo;
}

export const initialSystemInfoState: SystemInfoState = {
  ...initialBaseState,
  systemInfo: null
};