PHP Classes

File: frontend/src/interfaces/IContext/IContext.ts

Recommend this page to a friend!
  Classes of carlos carvalho   yrprey PHP application   frontend/src/interfaces/IContext/IContext.ts   Download  
File: frontend/src/interfaces/IContext/IContext.ts
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: yrprey PHP application
Web app to learn about OWASP API vulnerabilities
Author: By
Last change:
Date: 3 months ago
Size: 461 bytes
 

Contents

Class file image Download
import { NextRouter } from "next/router"; export interface IContext { router: NextRouter; tokenLocal: string; isMobile: boolean; isSideBarVisible: boolean; setIsSideBarVisible: React.Dispatch<React.SetStateAction<boolean>>; showSideBar: () => void; user: any; setUser: any; setTokenLocal: React.Dispatch<React.SetStateAction<string>>; statusApi: string; setStatusApi: React.Dispatch<React.SetStateAction<string>>; }