From 618cea2b588c7201e2c40ff5a1302a19c9269177 Mon Sep 17 00:00:00 2001 From: Vio Date: Sun, 5 Nov 2023 21:17:28 +0100 Subject: [PATCH] style: EnvCI - reorder iterface types --- typings.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/typings.d.ts b/typings.d.ts index dbe718ea..f77112fa 100644 --- a/typings.d.ts +++ b/typings.d.ts @@ -25,14 +25,14 @@ export interface AgentArgs { export interface EnvCI { isCi: boolean; + service?: string; + slug?: string; branch?: string; + pr?: string; build?: string; buildUrl?: string; commit?: string; - pr?: string; prBranch?: string; - service?: string; - slug?: string; } export class RelativeCiAgentWebpackPlugin {