tnp-helpers 16.444.16 → 16.444.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/shared/shared_folder_info.txt +1 -1
- package/browser/esm2022/lib/base/base-git.mjs +620 -0
- package/browser/esm2022/lib/base/base-library-build.mjs +380 -0
- package/browser/esm2022/lib/base/base-linked-projects.mjs +291 -0
- package/browser/esm2022/lib/base/base-npm-helpers.mjs +324 -0
- package/browser/esm2022/lib/base/base-project-resolver.mjs +56 -2
- package/browser/esm2022/lib/base/base-project.mjs +183 -1483
- package/browser/esm2022/lib/base/core-project.mjs +5 -3
- package/browser/esm2022/lib/base/index.mjs +5 -1
- package/browser/esm2022/lib/models.mjs +2 -1
- package/browser/fesm2022/tnp-helpers.mjs +1112 -749
- package/browser/fesm2022/tnp-helpers.mjs.map +1 -1
- package/browser/lib/base/base-git.d.ts +115 -0
- package/browser/lib/base/base-library-build.d.ts +46 -0
- package/browser/lib/base/base-linked-projects.d.ts +23 -0
- package/browser/lib/base/base-npm-helpers.d.ts +79 -0
- package/browser/lib/base/base-project-resolver.d.ts +2 -1
- package/browser/lib/base/base-project.d.ts +12 -205
- package/browser/lib/base/core-project.d.ts +12 -3
- package/browser/lib/base/index.d.ts +4 -0
- package/browser/lib/models.d.ts +12 -4
- package/client/esm2022/lib/base/base-git.mjs +620 -0
- package/client/esm2022/lib/base/base-library-build.mjs +380 -0
- package/client/esm2022/lib/base/base-linked-projects.mjs +291 -0
- package/client/esm2022/lib/base/base-npm-helpers.mjs +324 -0
- package/client/esm2022/lib/base/base-project-resolver.mjs +56 -2
- package/client/esm2022/lib/base/base-project.mjs +183 -1483
- package/client/esm2022/lib/base/core-project.mjs +5 -3
- package/client/esm2022/lib/base/index.mjs +5 -1
- package/client/esm2022/lib/models.mjs +2 -1
- package/client/fesm2022/tnp-helpers.mjs +1112 -749
- package/client/fesm2022/tnp-helpers.mjs.map +1 -1
- package/client/lib/base/base-git.d.ts +115 -0
- package/client/lib/base/base-library-build.d.ts +46 -0
- package/client/lib/base/base-linked-projects.d.ts +23 -0
- package/client/lib/base/base-npm-helpers.d.ts +79 -0
- package/client/lib/base/base-project-resolver.d.ts +2 -1
- package/client/lib/base/base-project.d.ts +12 -205
- package/client/lib/base/core-project.d.ts +12 -3
- package/client/lib/base/index.d.ts +4 -0
- package/client/lib/models.d.ts +12 -4
- package/client/package.json +21 -21
- package/lib/base/base-command-line.backend.d.ts +5 -0
- package/lib/base/base-command-line.backend.js +70 -15
- package/lib/base/base-command-line.backend.js.map +1 -1
- package/lib/base/base-git.d.ts +121 -0
- package/lib/base/base-git.js +862 -0
- package/lib/base/base-git.js.map +1 -0
- package/lib/base/base-library-build.d.ts +56 -0
- package/lib/base/base-library-build.js +443 -0
- package/lib/base/base-library-build.js.map +1 -0
- package/lib/base/base-linked-projects.d.ts +23 -0
- package/lib/base/base-linked-projects.js +391 -0
- package/lib/base/base-linked-projects.js.map +1 -0
- package/lib/base/base-npm-helpers.d.ts +78 -0
- package/lib/base/base-npm-helpers.js +404 -0
- package/lib/base/base-npm-helpers.js.map +1 -0
- package/lib/base/base-project-resolver.d.ts +2 -1
- package/lib/base/base-project-resolver.js +39 -4
- package/lib/base/base-project-resolver.js.map +1 -1
- package/lib/base/base-project.d.ts +14 -214
- package/lib/base/base-project.js +106 -1740
- package/lib/base/base-project.js.map +1 -1
- package/lib/base/core-project.d.ts +12 -3
- package/lib/base/core-project.js +8 -4
- package/lib/base/core-project.js.map +1 -1
- package/lib/base/index.d.ts +4 -0
- package/lib/base/index.js +4 -0
- package/lib/base/index.js.map +1 -1
- package/lib/helpers/for-backend/helpers-git.backend.d.ts +3 -1
- package/lib/helpers/for-backend/helpers-git.backend.js +74 -2
- package/lib/helpers/for-backend/helpers-git.backend.js.map +1 -1
- package/lib/helpers/for-browser/angular.helper.js +3 -3
- package/lib/models.d.ts +12 -4
- package/lib/old/base-component.js +3 -3
- package/lib/old/base-formly-component.js +3 -3
- package/lib/old/dual-component-ctrl.js +3 -3
- package/package.json +4 -4
- package/tmp-environment.json +25 -25
- package/websql/esm2022/lib/base/base-git.mjs +620 -0
- package/websql/esm2022/lib/base/base-library-build.mjs +380 -0
- package/websql/esm2022/lib/base/base-linked-projects.mjs +291 -0
- package/websql/esm2022/lib/base/base-npm-helpers.mjs +324 -0
- package/websql/esm2022/lib/base/base-project-resolver.mjs +50 -2
- package/websql/esm2022/lib/base/base-project.mjs +236 -1536
- package/websql/esm2022/lib/base/core-project.mjs +5 -3
- package/websql/esm2022/lib/base/index.mjs +5 -1
- package/websql/esm2022/lib/models.mjs +2 -1
- package/websql/fesm2022/tnp-helpers.mjs +1112 -754
- package/websql/fesm2022/tnp-helpers.mjs.map +1 -1
- package/websql/lib/base/base-git.d.ts +115 -0
- package/websql/lib/base/base-library-build.d.ts +46 -0
- package/websql/lib/base/base-linked-projects.d.ts +23 -0
- package/websql/lib/base/base-npm-helpers.d.ts +79 -0
- package/websql/lib/base/base-project-resolver.d.ts +2 -1
- package/websql/lib/base/base-project.d.ts +9 -205
- package/websql/lib/base/core-project.d.ts +12 -3
- package/websql/lib/base/index.d.ts +4 -0
- package/websql/lib/models.d.ts +12 -4
|
@@ -1,25 +1,24 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
+
export { ChildProcess } from 'child_process';
|
|
3
|
+
import { CommandOutputOptions } from 'tnp-core/src';
|
|
2
4
|
import { CoreModels } from 'tnp-core/src';
|
|
3
|
-
import {
|
|
5
|
+
import { CoreProject } from '../index';
|
|
4
6
|
import { BaseProjectResolver } from './base-project-resolver';
|
|
5
7
|
import { BaseProjectType } from '../models';
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
+
import type { BaseLibraryBuild } from './base-library-build';
|
|
9
|
+
import { BaseNpmHelpers } from './base-npm-helpers';
|
|
10
|
+
import { BaseLinkedProjects } from './base-linked-projects';
|
|
11
|
+
import { BaseGit } from './base-git';
|
|
8
12
|
export declare abstract class BaseProject<PROJCET extends BaseProject = any, TYPE = BaseProjectType> {
|
|
9
13
|
/**
|
|
10
14
|
* doesn't need to be real path -> can be link
|
|
11
15
|
*/
|
|
12
16
|
readonly location: string;
|
|
13
17
|
static ins: BaseProjectResolver<BaseProject<any, CoreModels.BaseProjectType>>;
|
|
14
|
-
static sortGroupOfProject<T extends BaseProject = BaseProject>(projects: T[], resoveDepsArray: (proj: T) => string[], projNameToCompare: (proj: T) => string): T[];
|
|
15
|
-
get embeddedProject(): PROJCET;
|
|
16
|
-
get projectsDbLocation(): string;
|
|
17
|
-
saveLocationToDB(): Promise<void>;
|
|
18
18
|
cache: any;
|
|
19
19
|
static cache: any;
|
|
20
20
|
get globalCache(): any;
|
|
21
21
|
readonly type: TYPE | string;
|
|
22
|
-
protected readonly packageJSON: any;
|
|
23
22
|
/**
|
|
24
23
|
* resolve instance
|
|
25
24
|
*/
|
|
@@ -29,27 +28,19 @@ export declare abstract class BaseProject<PROJCET extends BaseProject = any, TYP
|
|
|
29
28
|
* only available after executing *this.assignFreePort()*
|
|
30
29
|
*/
|
|
31
30
|
readonly port: string;
|
|
31
|
+
libraryBuild: BaseLibraryBuild;
|
|
32
|
+
npmHelpers: BaseNpmHelpers;
|
|
33
|
+
linkedProjects: BaseLinkedProjects;
|
|
34
|
+
git: BaseGit;
|
|
32
35
|
constructor(
|
|
33
36
|
/**
|
|
34
37
|
* doesn't need to be real path -> can be link
|
|
35
38
|
*/
|
|
36
39
|
location: string);
|
|
37
|
-
saveAllLinkedProjectsToDB(): Promise<void>;
|
|
38
40
|
get isMonorepo(): boolean;
|
|
39
41
|
protected orderCoreProjects(coreProjects: CoreProject[]): CoreProject[];
|
|
40
42
|
get core(): CoreProject;
|
|
41
|
-
addLinkedProject(linkedProj: LinkedProject | string): void;
|
|
42
|
-
addLinkedProjects(linkedProjs: LinkedProject[]): void;
|
|
43
|
-
setLinkedProjectsConfig(linkedPorjectsConfig: Partial<LinkedPorjectsConfig>): void;
|
|
44
|
-
private get linkedProjectsConfigPath();
|
|
45
|
-
protected recreateLinkedProjectsConfig(): void;
|
|
46
|
-
getLinkedProjectsConfig(): LinkedPorjectsConfig;
|
|
47
|
-
get linkedProjects(): LinkedProject[];
|
|
48
|
-
get detectedLinkedProjects(): LinkedProject[];
|
|
49
|
-
get linkedProjectsPrefix(): string;
|
|
50
43
|
get linkedProjectsExisted(): PROJCET[];
|
|
51
|
-
resetLinkedProjectsOnlyToCoreBranches(): boolean;
|
|
52
|
-
protected cloneUnexistedLinkedProjects(actionType: 'pull' | 'push', cloneChildren?: boolean): Promise<void>;
|
|
53
44
|
setType(type: TYPE): void;
|
|
54
45
|
typeIs(...types: TYPE[]): boolean;
|
|
55
46
|
typeIsNot(...types: TYPE[]): boolean;
|
|
@@ -62,45 +53,6 @@ export declare abstract class BaseProject<PROJCET extends BaseProject = any, TYP
|
|
|
62
53
|
*/
|
|
63
54
|
get name(): string;
|
|
64
55
|
get nameFromPomXML(): string;
|
|
65
|
-
/**
|
|
66
|
-
* version from package.json -> property version
|
|
67
|
-
*/
|
|
68
|
-
get version(): string;
|
|
69
|
-
/**
|
|
70
|
-
* Major Version from package.json
|
|
71
|
-
*/
|
|
72
|
-
get majorVersion(): number;
|
|
73
|
-
/**
|
|
74
|
-
* Minor Version from package.json
|
|
75
|
-
*/
|
|
76
|
-
get minorVersion(): number;
|
|
77
|
-
/**
|
|
78
|
-
* @deprecated
|
|
79
|
-
*/
|
|
80
|
-
bumpPatchVersion(): Promise<void>;
|
|
81
|
-
get versionPathAsNumber(): number;
|
|
82
|
-
/**
|
|
83
|
-
* npm dependencies from package.json
|
|
84
|
-
*/
|
|
85
|
-
get dependencies(): any;
|
|
86
|
-
/**
|
|
87
|
-
* peerDependencies dependencies
|
|
88
|
-
*/
|
|
89
|
-
get peerDependencies(): any;
|
|
90
|
-
/**
|
|
91
|
-
* devDependencies dependencies
|
|
92
|
-
*/
|
|
93
|
-
get devDependencies(): any;
|
|
94
|
-
/**
|
|
95
|
-
* resolutions dependencies
|
|
96
|
-
*/
|
|
97
|
-
get resolutions(): any;
|
|
98
|
-
/**
|
|
99
|
-
* object with all deps from package json
|
|
100
|
-
*/
|
|
101
|
-
get allDependencies(): {
|
|
102
|
-
[packageName: string]: string;
|
|
103
|
-
};
|
|
104
56
|
protected getFoldersForPossibleProjectChildren(): string[];
|
|
105
57
|
protected getAllChildren(): PROJCET[];
|
|
106
58
|
/**
|
|
@@ -111,22 +63,6 @@ export declare abstract class BaseProject<PROJCET extends BaseProject = any, TYP
|
|
|
111
63
|
get parent(): PROJCET;
|
|
112
64
|
get grandpa(): PROJCET;
|
|
113
65
|
get genericName(): string;
|
|
114
|
-
deleteNodeModules(): void;
|
|
115
|
-
reinstalNodeModules(options?: {
|
|
116
|
-
useYarn?: boolean;
|
|
117
|
-
force?: boolean;
|
|
118
|
-
}): void;
|
|
119
|
-
makeSureNodeModulesInstalled(options?: {
|
|
120
|
-
checkPackages?: boolean;
|
|
121
|
-
useYarn?: boolean;
|
|
122
|
-
force?: boolean;
|
|
123
|
-
}): Promise<void>;
|
|
124
|
-
preferYarnOverNpm(): boolean;
|
|
125
|
-
/**
|
|
126
|
-
*
|
|
127
|
-
* @returns true if node_modules folder is empty
|
|
128
|
-
*/
|
|
129
|
-
nodeModulesEmpty(): boolean;
|
|
130
66
|
/**
|
|
131
67
|
* same has project.hasFile();
|
|
132
68
|
*/
|
|
@@ -154,6 +90,9 @@ export declare abstract class BaseProject<PROJCET extends BaseProject = any, TYP
|
|
|
154
90
|
run(command: string, options?: Omit<CoreModels.RunOptions, 'cwd'>): {
|
|
155
91
|
sync(): string;
|
|
156
92
|
async(detach?: boolean, mockFun?: (stdoutCallback: (dataForStdout: any) => any, stdErrcCallback: (dataForStder: any) => any, shouldProcesBeDead?: () => boolean) => number | Promise<number>): import("child_process").ChildProcess;
|
|
93
|
+
/**
|
|
94
|
+
* project folder basename
|
|
95
|
+
*/
|
|
157
96
|
asyncAsPromise(): Promise<void>;
|
|
158
97
|
unitlOutputContains(stdoutMsg: string | string[], stderMsg?: string | string[], timeout?: number, stdoutOutputContainsCallback?: () => any): Promise<any>;
|
|
159
98
|
};
|
|
@@ -176,8 +115,6 @@ export declare abstract class BaseProject<PROJCET extends BaseProject = any, TYP
|
|
|
176
115
|
readJson<T = {}>(fileRelativeToProjectPath: string): T;
|
|
177
116
|
remove(relativePath: string, exactPath?: boolean): void;
|
|
178
117
|
removeFolderByRelativePath(relativePathToFolder: string): void;
|
|
179
|
-
linkNodeModulesTo(proj: Partial<BaseProject>): void;
|
|
180
|
-
reinstallNodeModules(forcerRemoveNodeModules?: boolean): void;
|
|
181
118
|
assignFreePort(startFrom?: number, howManyFreePortsAfterThatPort?: number): Promise<number>;
|
|
182
119
|
removeItself(): void;
|
|
183
120
|
/**
|
|
@@ -205,105 +142,10 @@ export declare abstract class BaseProject<PROJCET extends BaseProject = any, TYP
|
|
|
205
142
|
getMainBranches(): string[];
|
|
206
143
|
isUnsingActionCommit(): boolean;
|
|
207
144
|
resetProcess(overrideBranch?: string, recrusive?: boolean): Promise<void>;
|
|
208
|
-
pullProcess(cloneChildren?: boolean): Promise<void>;
|
|
209
|
-
pushProcess(options?: {
|
|
210
|
-
force?: boolean;
|
|
211
|
-
typeofCommit?: TypeOfCommit;
|
|
212
|
-
origin?: string;
|
|
213
|
-
args?: string[];
|
|
214
|
-
exitCallBack?: () => void;
|
|
215
|
-
forcePushNoQuestion?: boolean;
|
|
216
|
-
commitMessageRequired?: boolean;
|
|
217
|
-
skipChildren?: boolean;
|
|
218
|
-
}): Promise<void>;
|
|
219
|
-
private _beforeAnyActionOnGitRoot;
|
|
220
|
-
protected _beforePushProcessAction(): Promise<void>;
|
|
221
|
-
protected _beforePullProcessAction(cloneChildren?: boolean): Promise<void>;
|
|
222
|
-
protected _getCommitMessage(typeofCommit: TypeOfCommit, args: string[], commitMessageRequired?: boolean): Promise<CommitData>;
|
|
223
145
|
linkTo(destPackageLocation: string): void;
|
|
224
146
|
writeFile(relativePath: string, content: string): void;
|
|
225
147
|
runCommandGetString(this: BaseProject, command: string): string;
|
|
226
|
-
get git(): {
|
|
227
|
-
unstageAllFiles(): void;
|
|
228
|
-
revertFileChanges(fileReletivePath: string): void;
|
|
229
|
-
clone(url: string, destinationFolderName?: string, branchName?: string): Promise<string>;
|
|
230
|
-
restoreLastVersion(localFilePath: string): void;
|
|
231
|
-
stageAllFiles(): void;
|
|
232
|
-
stash(optinos?: {
|
|
233
|
-
onlyStaged?: boolean;
|
|
234
|
-
}): void;
|
|
235
|
-
stashApply(): void;
|
|
236
|
-
fetch(): void;
|
|
237
|
-
resetFiles(...relativePathes: string[]): void;
|
|
238
|
-
readonly isInsideGitRepo: boolean;
|
|
239
|
-
readonly isGitRoot: boolean;
|
|
240
|
-
readonly originURL: string;
|
|
241
|
-
commit(commitMessage?: string): void;
|
|
242
|
-
/**
|
|
243
|
-
* alias to stage all and commit
|
|
244
|
-
*/
|
|
245
|
-
addAndCommit(commitMessage: string): void;
|
|
246
|
-
stageAllAndCommit(commitMessage: string): void;
|
|
247
|
-
pushCurrentBranch(options?: {
|
|
248
|
-
force?: boolean;
|
|
249
|
-
origin?: string;
|
|
250
|
-
askToRetry?: boolean;
|
|
251
|
-
forcePushNoQuestion?: boolean;
|
|
252
|
-
}): Promise<boolean>;
|
|
253
|
-
readonly allOrigins: {
|
|
254
|
-
origin: string;
|
|
255
|
-
url: string;
|
|
256
|
-
}[];
|
|
257
|
-
readonly uncommitedFiles: string[];
|
|
258
|
-
readonly thereAreSomeUncommitedChange: boolean;
|
|
259
|
-
thereAreSomeUncommitedChangeExcept(filesList?: string[]): boolean;
|
|
260
|
-
meltActionCommits(soft?: boolean): number;
|
|
261
|
-
pullCurrentBranch(options?: {
|
|
262
|
-
askToRetry?: boolean;
|
|
263
|
-
defaultHardResetCommits?: number;
|
|
264
|
-
}): Promise<void>;
|
|
265
|
-
readonly currentBranchName: string;
|
|
266
|
-
readonly listOfCurrentGitChanges: {
|
|
267
|
-
modified: string[];
|
|
268
|
-
deleted: string[];
|
|
269
|
-
created: string[];
|
|
270
|
-
};
|
|
271
|
-
getBranchesNamesBy(pattern: string | RegExp): string[];
|
|
272
|
-
resetSoftHEAD(HEAD?: number): void;
|
|
273
|
-
resetHard(options?: {
|
|
274
|
-
HEAD?: number;
|
|
275
|
-
}): void;
|
|
276
|
-
countComits(): number;
|
|
277
|
-
hasAnyCommits(): boolean;
|
|
278
|
-
readonly isInMergeProcess: boolean;
|
|
279
|
-
lastCommitDate(): Date;
|
|
280
|
-
lastCommitHash(): string;
|
|
281
|
-
lastCommitMessage(): string;
|
|
282
|
-
penultimageCommitHash(): string;
|
|
283
|
-
checkTagExists(tag: string): boolean;
|
|
284
|
-
checkout(branchName: string, options?: {
|
|
285
|
-
createBranchIfNotExists?: boolean;
|
|
286
|
-
fetchBeforeCheckout?: boolean;
|
|
287
|
-
switchBranchWhenExists?: boolean;
|
|
288
|
-
}): void;
|
|
289
|
-
checkoutFromTo(checkoutFromBranch: string, branch: string, origin?: string): void;
|
|
290
|
-
/**
|
|
291
|
-
*
|
|
292
|
-
* @param majorVersion example: v1, v2 etc.
|
|
293
|
-
* @returns tag name
|
|
294
|
-
*/
|
|
295
|
-
lastTagNameForMajorVersion(majorVersion: any): string;
|
|
296
|
-
lastTagHash(): string;
|
|
297
|
-
readonly remoteOriginUrl: string;
|
|
298
|
-
readonly lastTagVersionName: string;
|
|
299
|
-
readonly stagedFiles: string[];
|
|
300
|
-
/**
|
|
301
|
-
* TODO does this make any sense
|
|
302
|
-
*/
|
|
303
|
-
renameOrigin(newNameOrUlr: string): void;
|
|
304
|
-
};
|
|
305
148
|
toString: () => string;
|
|
306
|
-
protected checkIfLogginInToNpm(): void;
|
|
307
149
|
get parentsNames(): string[];
|
|
308
150
|
openLocation(relativeFolderPath: string): void;
|
|
309
151
|
private findParentsNames;
|
|
@@ -332,46 +174,4 @@ export declare abstract class BaseProject<PROJCET extends BaseProject = any, TYP
|
|
|
332
174
|
* get info about porject
|
|
333
175
|
*/
|
|
334
176
|
info(): Promise<void>;
|
|
335
|
-
/**
|
|
336
|
-
* By default no translation of commit
|
|
337
|
-
*/
|
|
338
|
-
transalteGitCommitFromArgs(): {
|
|
339
|
-
from: string;
|
|
340
|
-
to: string;
|
|
341
|
-
};
|
|
342
|
-
/**
|
|
343
|
-
* By defult true.. when commit branches will not function.
|
|
344
|
-
* (false is better for simple projects)
|
|
345
|
-
*/
|
|
346
|
-
useGitBranchesWhenCommitingAndPushing(): boolean;
|
|
347
|
-
/**
|
|
348
|
-
* usefull when pushing in project with childrens as git repos
|
|
349
|
-
*/
|
|
350
|
-
automaticallyAddAllChnagesWhenPushingToGit(): boolean;
|
|
351
|
-
/**
|
|
352
|
-
* usefull when pushing in project with childrens as git repos
|
|
353
|
-
*/
|
|
354
|
-
useGitBranchesAsMetadataForCommits(): boolean;
|
|
355
|
-
/**
|
|
356
|
-
* angular libraries from angular.json
|
|
357
|
-
*/
|
|
358
|
-
get libraries(): PROJCET[];
|
|
359
|
-
get sortedLibrariesByDeps(): PROJCET[];
|
|
360
|
-
getSortedLibrariesByDepsForBuild(libs: PROJCET[], dontSugestBuildAll?: boolean): Promise<PROJCET[]>;
|
|
361
|
-
get getLibraryBuildSuccessComamnd(): string;
|
|
362
|
-
buildLibraries({ rebuild, watch, strategy, onlySelectedLibs, }?: {
|
|
363
|
-
rebuild?: boolean;
|
|
364
|
-
watch?: boolean;
|
|
365
|
-
strategy?: 'link' | 'copy';
|
|
366
|
-
onlySelectedLibs?: string[];
|
|
367
|
-
}): Promise<void>;
|
|
368
|
-
getLibraryBuildComamnd(options?: {
|
|
369
|
-
watch: boolean;
|
|
370
|
-
}): string | undefined;
|
|
371
|
-
startNpmTask(taskName: string, additionalArguments?: string | object): {
|
|
372
|
-
sync(): string;
|
|
373
|
-
async(detach?: boolean, mockFun?: (stdoutCallback: (dataForStdout: any) => any, stdErrcCallback: (dataForStder: any) => any, shouldProcesBeDead?: () => boolean) => number | Promise<number>): import("child_process").ChildProcess;
|
|
374
|
-
asyncAsPromise(): Promise<void>;
|
|
375
|
-
unitlOutputContains(stdoutMsg: string | string[], stderMsg?: string | string[], timeout?: number, stdoutOutputContainsCallback?: () => any): Promise<any>;
|
|
376
|
-
};
|
|
377
177
|
}
|