Files
Speedtest-Tracker/conf/site/node_modules/react-bootstrap/esm/NavContext.d.ts
2020-07-08 12:08:03 +01:00

10 lines
266 B
TypeScript

import React from 'react';
interface NavContextType {
role?: string;
activeKey: any;
getControlledId: (key: any) => any;
getControllerId: (key: any) => any;
}
declare const NavContext: React.Context<NavContextType | null>;
export default NavContext;