Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/terminal-suggest/src/fig/fig-autocomplete-shared/index.ts
3520 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
import type * as Internal from './convert';
7
import type * as Metadata from './specMetadata';
8
import { revertSubcommand } from './revert';
9
import { convertSubcommand } from './convert';
10
import { convertLoadSpec, initializeDefault } from './specMetadata';
11
import { SpecMixin, applyMixin, mergeSubcommands } from './mixins';
12
import { SpecLocationSource, makeArray } from './utils';
13
14
export {
15
Internal,
16
revertSubcommand,
17
convertSubcommand,
18
Metadata,
19
convertLoadSpec,
20
initializeDefault,
21
SpecMixin,
22
applyMixin,
23
mergeSubcommands,
24
makeArray,
25
SpecLocationSource,
26
};
27
28