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
33 lines
953 B
Plaintext
33 lines
953 B
Plaintext
import './index.scss';
|
|
import React from 'react';
|
|
export declare const baseClass = "version-drawer";
|
|
export declare const formatVersionDrawerSlug: ({ depth, uuid, }: {
|
|
depth: number;
|
|
uuid: string;
|
|
}) => string;
|
|
export declare const VersionDrawerContent: React.FC<{
|
|
collectionSlug?: string;
|
|
docID?: number | string;
|
|
drawerSlug: string;
|
|
globalSlug?: string;
|
|
}>;
|
|
export declare const VersionDrawer: React.FC<{
|
|
collectionSlug?: string;
|
|
docID?: number | string;
|
|
drawerSlug: string;
|
|
globalSlug?: string;
|
|
}>;
|
|
export declare const useVersionDrawer: ({ collectionSlug, docID, globalSlug, }: {
|
|
collectionSlug?: string;
|
|
docID?: number | string;
|
|
globalSlug?: string;
|
|
}) => {
|
|
closeDrawer: () => void;
|
|
Drawer: () => React.JSX.Element;
|
|
drawerDepth: number;
|
|
drawerSlug: string;
|
|
isDrawerOpen: boolean;
|
|
openDrawer: () => void;
|
|
toggleDrawer: () => void;
|
|
};
|
|
//# sourceMappingURL=index.d.ts.map |