Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
17 lines
651 B
Plaintext
17 lines
651 B
Plaintext
import React from 'react';
|
|
import type { Props, TogglerProps } from './types.js';
|
|
import './index.scss';
|
|
export declare const drawerZBase = 100;
|
|
export declare const formatDrawerSlug: ({ slug, depth }: {
|
|
depth: number;
|
|
slug: string;
|
|
}) => string;
|
|
export { useDrawerSlug } from './useDrawerSlug.js';
|
|
export declare const DrawerToggler: React.FC<TogglerProps>;
|
|
export declare const Drawer: React.FC<Props>;
|
|
export declare const DrawerDepthContext: React.Context<number>;
|
|
export declare const DrawerDepthProvider: React.FC<{
|
|
children: React.ReactNode;
|
|
}>;
|
|
export declare const useDrawerDepth: () => number;
|
|
//# sourceMappingURL=index.d.ts.map |