19 lines
493 B
TypeScript
19 lines
493 B
TypeScript
import type Output from "../models/output";
|
|
export type EncodedNavigation = {
|
|
[index: string]: {
|
|
index: number;
|
|
title: string;
|
|
introduction: boolean;
|
|
prev?: unknown;
|
|
next?: unknown;
|
|
level: number;
|
|
};
|
|
};
|
|
/**
|
|
this.navigation is a deprecated property from GitBook v2
|
|
|
|
@return {Object}
|
|
*/
|
|
declare function encodeNavigation(output: Output): EncodedNavigation;
|
|
export default encodeNavigation;
|
|
//# sourceMappingURL=encodeNavigation.d.ts.map
|