mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
10 lines
266 B
TypeScript
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;
|