@nu-art/commando 0.401.3 → 0.401.4

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.
@@ -1,3 +1,20 @@
1
+ /*
2
+ * commando provides shell command execution framework with interactive sessions and plugin system
3
+ *
4
+ * Copyright (C) 2020 Adam van der Kruk aka TacB0sS
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ */
1
18
  import { ImplementationMissingException } from '@nu-art/ts-common';
2
19
  import { CommandBuilder } from './CommandBuilder.js';
3
20
  import { CreateMergedInstance } from './class-merger.js';
package/core/CliError.js CHANGED
@@ -1,3 +1,20 @@
1
+ /*
2
+ * commando provides shell command execution framework with interactive sessions and plugin system
3
+ *
4
+ * Copyright (C) 2020 Adam van der Kruk aka TacB0sS
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ */
1
18
  import { CustomException } from '@nu-art/ts-common';
2
19
  /**
3
20
  * Exception thrown when a shell command execution fails.
@@ -1,3 +1,20 @@
1
+ /*
2
+ * commando provides shell command execution framework with interactive sessions and plugin system
3
+ *
4
+ * Copyright (C) 2020 Adam van der Kruk aka TacB0sS
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ */
1
18
  /**
2
19
  * Default options for CommandBuilder class instances.
3
20
  */
@@ -1,3 +1,20 @@
1
+ /*
2
+ * commando provides shell command execution framework with interactive sessions and plugin system
3
+ *
4
+ * Copyright (C) 2020 Adam van der Kruk aka TacB0sS
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ */
1
18
  import { CommandoInteractive } from '../interactive/CommandoInteractive.js';
2
19
  import { Commando_Basic } from '../plugins/basic.js';
3
20
  /** Internal pool of allocated commando instances */
@@ -1,3 +1,20 @@
1
+ /*
2
+ * commando provides shell command execution framework with interactive sessions and plugin system
3
+ *
4
+ * Copyright (C) 2020 Adam van der Kruk aka TacB0sS
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ */
1
18
  /**
2
19
  * Merges multiple classes into a single class constructor.
3
20
  *
package/index.d.ts CHANGED
@@ -1,11 +1,16 @@
1
1
  export * from './core/BaseCommando.js';
2
+ export * from './core/CommandBuilder.js';
2
3
  export * from './core/CliError.js';
3
4
  export * from './core/CommandoPool.js';
4
5
  export * from './core/class-merger.js';
5
6
  export * from './interactive/CommandoInteractive.js';
6
7
  export * from './simple/Commando.js';
7
8
  export * from './plugins/basic.js';
9
+ export * from './plugins/git.js';
8
10
  export * from './plugins/nvm.js';
9
11
  export * from './plugins/pnpm.js';
12
+ export * from './plugins/programming.js';
13
+ export * from './plugins/python.js';
10
14
  export * from './services/pnpm.js';
15
+ export * from './services/nvm.js';
11
16
  export * from './types.js';
package/index.js CHANGED
@@ -1,5 +1,23 @@
1
+ /*
2
+ * commando provides shell command execution framework with interactive sessions and plugin system
3
+ *
4
+ * Copyright (C) 2020 Adam van der Kruk aka TacB0sS
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ */
1
18
  // Core exports
2
19
  export * from './core/BaseCommando.js';
20
+ export * from './core/CommandBuilder.js';
3
21
  export * from './core/CliError.js';
4
22
  export * from './core/CommandoPool.js';
5
23
  export * from './core/class-merger.js';
@@ -8,9 +26,13 @@ export * from './interactive/CommandoInteractive.js';
8
26
  export * from './simple/Commando.js';
9
27
  // Plugins
10
28
  export * from './plugins/basic.js';
29
+ export * from './plugins/git.js';
11
30
  export * from './plugins/nvm.js';
12
31
  export * from './plugins/pnpm.js';
32
+ export * from './plugins/programming.js';
33
+ export * from './plugins/python.js';
13
34
  // Services
14
35
  export * from './services/pnpm.js';
36
+ export * from './services/nvm.js';
15
37
  // Types
16
38
  export * from './types.js';
@@ -1,3 +1,20 @@
1
+ /*
2
+ * commando provides shell command execution framework with interactive sessions and plugin system
3
+ *
4
+ * Copyright (C) 2020 Adam van der Kruk aka TacB0sS
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ */
1
18
  import { generateHex } from '@nu-art/ts-common';
2
19
  import { InteractiveShell } from './InteractiveShell.js';
3
20
  import { BaseCommando } from '../core/BaseCommando.js';
@@ -1,3 +1,20 @@
1
+ /*
2
+ * commando provides shell command execution framework with interactive sessions and plugin system
3
+ *
4
+ * Copyright (C) 2020 Adam van der Kruk aka TacB0sS
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ */
1
18
  import { addItemToArrayAtIndex, currentTimeMillis, generateHex, Logger, LogLevel, removeItemFromArray } from '@nu-art/ts-common';
2
19
  import { spawn } from 'node:child_process';
3
20
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nu-art/commando",
3
- "version": "0.401.3",
3
+ "version": "0.401.4",
4
4
  "description": "Shell command execution framework with interactive sessions, CLI parameter resolution, and plugin system for building and executing shell scripts programmatically",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -38,11 +38,11 @@
38
38
  "build": "tsc"
39
39
  },
40
40
  "dependencies": {
41
- "@nu-art/cli-params": "0.401.3",
42
- "@nu-art/ts-common": "0.401.3"
41
+ "@nu-art/cli-params": "0.401.4",
42
+ "@nu-art/ts-common": "0.401.4"
43
43
  },
44
44
  "devDependencies": {
45
- "@nu-art/testalot": "0.401.3"
45
+ "@nu-art/testalot": "0.401.4"
46
46
  },
47
47
  "unitConfig": {
48
48
  "type": "typescript-lib"
package/plugins/basic.js CHANGED
@@ -1,3 +1,20 @@
1
+ /*
2
+ * commando provides shell command execution framework with interactive sessions and plugin system
3
+ *
4
+ * Copyright (C) 2020 Adam van der Kruk aka TacB0sS
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ */
1
18
  import { BaseCommando } from '../core/BaseCommando.js';
2
19
  /**
3
20
  * Basic shell command plugin for Commando.
package/plugins/git.d.ts CHANGED
@@ -31,25 +31,6 @@ type GitPushParams = {
31
31
  * - Utility: status, resetHard, gsui (git status UI)
32
32
  */
33
33
  export declare class Commando_Git extends Super {
34
- git(): {
35
- clone: (url: string, options?: GitCloneParams) => this;
36
- checkout: (branch: string) => this;
37
- createTag: (tagName: string) => this;
38
- gitCommit: (commitMessage: string) => this;
39
- add: (file: string) => this;
40
- addAll: () => this;
41
- addAndCommit: (commitMessage: string) => this;
42
- push: (options?: GitPushParams) => this;
43
- pushTags: () => this;
44
- fetch: () => this;
45
- resetHard: (tag?: string) => this;
46
- getCurrentBranch: () => this;
47
- pull: (params: string) => this;
48
- merge: (mergeFrom: string) => this;
49
- createBranch: (branch: string) => this;
50
- gsui: (modules?: string) => this;
51
- status: () => this;
52
- };
53
34
  /**
54
35
  * Clones a Git repository.
55
36
  *
package/plugins/git.js CHANGED
@@ -1,3 +1,20 @@
1
+ /*
2
+ * commando provides shell command execution framework with interactive sessions and plugin system
3
+ *
4
+ * Copyright (C) 2020 Adam van der Kruk aka TacB0sS
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ */
1
18
  import { Commando_Programming } from './programming.js';
2
19
  import { Commando_Basic } from './basic.js';
3
20
  import { MergeClass } from '../core/class-merger.js';
@@ -21,28 +38,6 @@ const Super = MergeClass(BaseCommando, Commando_Programming, Commando_Basic);
21
38
  * - Utility: status, resetHard, gsui (git status UI)
22
39
  */
23
40
  export class Commando_Git extends Super {
24
- git() {
25
- return {
26
- clone: this.git_clone,
27
- checkout: this.git_checkout,
28
- createTag: this.git_createTag,
29
- gitCommit: this.git_gitCommit,
30
- add: this.git_add,
31
- addAll: this.git_addAll,
32
- addAndCommit: this.git_addAndCommit,
33
- push: this.git_push,
34
- pushTags: this.git_pushTags,
35
- fetch: this.git_fetch,
36
- resetHard: this.git_resetHard,
37
- getCurrentBranch: this.git_getCurrentBranch,
38
- pull: this.git_pull,
39
- merge: this.git_merge,
40
- createBranch: this.git_createBranch,
41
- gsui: this.git_gsui,
42
- status: this.git_status,
43
- };
44
- }
45
- ;
46
41
  /**
47
42
  * Clones a Git repository.
48
43
  *
package/plugins/nvm.js CHANGED
@@ -1,3 +1,20 @@
1
+ /*
2
+ * commando provides shell command execution framework with interactive sessions and plugin system
3
+ *
4
+ * Copyright (C) 2020 Adam van der Kruk aka TacB0sS
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ */
1
18
  import { BaseCommando } from '../core/BaseCommando.js';
2
19
  import { Commando_Programming } from './programming.js';
3
20
  import { MergeClass } from '../core/class-merger.js';
package/plugins/pnpm.js CHANGED
@@ -1,3 +1,20 @@
1
+ /*
2
+ * commando provides shell command execution framework with interactive sessions and plugin system
3
+ *
4
+ * Copyright (C) 2020 Adam van der Kruk aka TacB0sS
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ */
1
18
  import { BaseCommando } from '../core/BaseCommando.js';
2
19
  import { MergeClass } from '../core/class-merger.js';
3
20
  import { Commando_Basic } from './basic.js';
@@ -1,3 +1,20 @@
1
+ /*
2
+ * commando provides shell command execution framework with interactive sessions and plugin system
3
+ *
4
+ * Copyright (C) 2020 Adam van der Kruk aka TacB0sS
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ */
1
18
  import { BaseCommando } from '../core/BaseCommando.js';
2
19
  /**
3
20
  * Programming constructs plugin for Commando.
package/plugins/python.js CHANGED
@@ -1,3 +1,20 @@
1
+ /*
2
+ * commando provides shell command execution framework with interactive sessions and plugin system
3
+ *
4
+ * Copyright (C) 2020 Adam van der Kruk aka TacB0sS
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ */
1
18
  import { BaseCommando } from '../core/BaseCommando.js';
2
19
  import { Commando_Programming } from './programming.js';
3
20
  import { MergeClass } from '../core/class-merger.js';
package/services/nvm.js CHANGED
@@ -1,3 +1,20 @@
1
+ /*
2
+ * commando provides shell command execution framework with interactive sessions and plugin system
3
+ *
4
+ * Copyright (C) 2020 Adam van der Kruk aka TacB0sS
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ */
1
18
  import * as fs from 'fs';
2
19
  import { promises as _fs } from 'fs';
3
20
  import * as path from 'path';
package/services/pnpm.js CHANGED
@@ -1,3 +1,20 @@
1
+ /*
2
+ * commando provides shell command execution framework with interactive sessions and plugin system
3
+ *
4
+ * Copyright (C) 2020 Adam van der Kruk aka TacB0sS
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ */
1
18
  import { promises as fs } from 'fs';
2
19
  import { Logger, LogLevel } from '@nu-art/ts-common';
3
20
  import { convertToFullPath } from '../tools.js';
@@ -1,3 +1,20 @@
1
+ /*
2
+ * commando provides shell command execution framework with interactive sessions and plugin system
3
+ *
4
+ * Copyright (C) 2020 Adam van der Kruk aka TacB0sS
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ */
1
18
  import { ThisShouldNotHappenException } from '@nu-art/ts-common';
2
19
  import { SimpleShell } from './SimpleShell.js';
3
20
  import { BaseCommando } from '../core/BaseCommando.js';
@@ -1,3 +1,20 @@
1
+ /*
2
+ * commando provides shell command execution framework with interactive sessions and plugin system
3
+ *
4
+ * Copyright (C) 2020 Adam van der Kruk aka TacB0sS
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ */
1
18
  import { exec } from 'child_process';
2
19
  import { Logger } from '@nu-art/ts-common';
3
20
  import { CliError } from '../core/CliError.js';
package/tools.js CHANGED
@@ -1,3 +1,20 @@
1
+ /*
2
+ * commando provides shell command execution framework with interactive sessions and plugin system
3
+ *
4
+ * Copyright (C) 2020 Adam van der Kruk aka TacB0sS
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ */
1
18
  import * as path from 'path';
2
19
  /**
3
20
  * Removes ANSI escape codes from a string.
package/types.js CHANGED
@@ -1 +1,18 @@
1
+ /*
2
+ * commando provides shell command execution framework with interactive sessions and plugin system
3
+ *
4
+ * Copyright (C) 2020 Adam van der Kruk aka TacB0sS
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ */
1
18
  export {};