mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-09 19:44:56 +02:00
15 lines
713 B
TypeScript
15 lines
713 B
TypeScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
/** The name of the version that's actively worked on (e.g. `website/docs`) */
|
|
export declare const CURRENT_VERSION_NAME = "current";
|
|
/** All doc versions are stored here by version names */
|
|
export declare const VERSIONED_DOCS_DIR = "versioned_docs";
|
|
/** All doc versioned sidebars are stored here by version names */
|
|
export declare const VERSIONED_SIDEBARS_DIR = "versioned_sidebars";
|
|
/** The version names. Should 1-1 map to the content of versioned docs dir. */
|
|
export declare const VERSIONS_JSON_FILE = "versions.json";
|