GITLAB

Herik dos Santos Lorenção / 2020-Herik-SRH

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • 2020-Herik-SRH
  • codigos
  • frontend
  • src
  • store
  • navigationInfo
  • state.ts
  • d1952cf4   Adicionando codigos Browse Code »
    Herik dos Santos Lorenção
    2020-08-15 20:32:20 -0300  
state.ts 258 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
interface NavigationInfo {
  projectId: number | null
}

export interface NavigationInfoStateInterface {
  navigationInfo: NavigationInfo;
}

const state: NavigationInfoStateInterface = {
  navigationInfo: {
    projectId: null
  }
};

export default state;