microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
1.11.2

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/extension/debuggingConfiguration/configurationProviders/baseConfigProvider.ts

20lines · modeblame

5471436aRedMickey5 years ago1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the MIT license. See LICENSE file in the project root for details.
3
4import { MultiStepInput, InputStep } from "../multiStepInput";
5import { DebugConfigurationState } from "../debugConfigTypesAndConstants";
6import { ConfigurationProviderHelper } from "../../../common/configurationProviderHelper";
7
8export abstract class BaseConfigProvider {
9protected configurationProviderHelper: ConfigurationProviderHelper;
10protected maxStepCount: number;
11
12constructor() {
13this.configurationProviderHelper = new ConfigurationProviderHelper();
14}
15
0d77292aJiglioNero4 years ago16public abstract buildConfiguration(
5471436aRedMickey5 years ago17input: MultiStepInput<DebugConfigurationState>,
18state: DebugConfigurationState,
19): Promise<InputStep<DebugConfigurationState> | void>;
20}