@danilandreev/material-docs
Version:
material-docs - react framework for easy creating documentation site in material design style.
16 lines (13 loc) • 380 B
TypeScript
/*
* Author: Andrieiev Danil | danssg08@gmail.com | https://github.com/DanilAndreev
* Copyright (C) 2020.
*/
/// <reference types="react" />
export type NestingContext = number;
/**
* useNesting - react hook, created to provide elements with nesting information.
* @function
* @return number
*/
declare const useNesting: () => NestingContext;
export default useNesting;