From 01c9ca65ff2c3ded90ffffdc5fdbb86df504a5eb Mon Sep 17 00:00:00 2001 From: Daniel Nadeau <3473356+D4N14L@users.noreply.github.com> Date: Fri, 6 May 2022 19:55:43 -0700 Subject: [PATCH] Nit: import order --- .../ts-command-line/src/providers/ScopedCommandLineAction.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/ts-command-line/src/providers/ScopedCommandLineAction.ts b/libraries/ts-command-line/src/providers/ScopedCommandLineAction.ts index c405b4c1825..20c67323f41 100644 --- a/libraries/ts-command-line/src/providers/ScopedCommandLineAction.ts +++ b/libraries/ts-command-line/src/providers/ScopedCommandLineAction.ts @@ -1,12 +1,12 @@ // Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. // See LICENSE in the project root for license information. +import { SCOPING_PARAMETER_GROUP } from '../Constants'; import { CommandLineAction, ICommandLineActionOptions } from './CommandLineAction'; import { CommandLineParser, ICommandLineParserOptions } from './CommandLineParser'; import { CommandLineParserExitError } from './CommandLineParserExitError'; import type { CommandLineParameter } from '../parameters/BaseClasses'; import type { CommandLineParameterProvider, ICommandLineParserData } from './CommandLineParameterProvider'; -import { SCOPING_PARAMETER_GROUP } from '../Constants'; interface IInternalScopedCommandLineParserOptions extends ICommandLineParserOptions { readonly actionOptions: ICommandLineActionOptions;