UNPKG

@docusaurus/utils

Version:

Node utility functions for Docusaurus packages.

14 lines 528 B
/** * 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. */ type PreferredLanguage = 'javascript' | 'typescript'; type AskPreferredLanguageOptions = { fallback: PreferredLanguage | undefined; exit: boolean; }; export declare function askPreferredLanguage(options?: Partial<AskPreferredLanguageOptions>): Promise<'javascript' | 'typescript'>; export {}; //# sourceMappingURL=cliUtils.d.ts.map