mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-25 09:03:47 +01:00
regen doc
This commit is contained in:
parent
7cb48f4612
commit
f825cc0bfd
7
dist/bitburner.d.ts
vendored
7
dist/bitburner.d.ts
vendored
@ -777,7 +777,12 @@ export declare interface CodingContract {
|
|||||||
* @param opts - Optional parameters for configuring function behavior.
|
* @param opts - Optional parameters for configuring function behavior.
|
||||||
* @returns True if the solution was correct, false otherwise. If the returnReward option is configured, then the function will instead return a string. If the contract is successfully solved, the string will contain a description of the contract’s reward. Otherwise, it will be an empty string.
|
* @returns True if the solution was correct, false otherwise. If the returnReward option is configured, then the function will instead return a string. If the contract is successfully solved, the string will contain a description of the contract’s reward. Otherwise, it will be an empty string.
|
||||||
*/
|
*/
|
||||||
attempt(answer: string[] | number, filename: string, host?: string, opts?: CodingAttemptOptions): boolean | string;
|
attempt(
|
||||||
|
answer: string | number | any[],
|
||||||
|
filename: string,
|
||||||
|
host?: string,
|
||||||
|
opts?: CodingAttemptOptions,
|
||||||
|
): boolean | string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the type of a coding contract.
|
* Get the type of a coding contract.
|
||||||
|
@ -9,14 +9,19 @@ Attempts a coding contract.
|
|||||||
<b>Signature:</b>
|
<b>Signature:</b>
|
||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
attempt(answer: string[] | number, filename: string, host?: string, opts?: CodingAttemptOptions): boolean | string;
|
attempt(
|
||||||
|
answer: string | number | any[],
|
||||||
|
filename: string,
|
||||||
|
host?: string,
|
||||||
|
opts?: CodingAttemptOptions,
|
||||||
|
): boolean | string;
|
||||||
```
|
```
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
|
|
||||||
| Parameter | Type | Description |
|
| Parameter | Type | Description |
|
||||||
| --- | --- | --- |
|
| --- | --- | --- |
|
||||||
| answer | string\[\] \| number | Solution for the contract. |
|
| answer | string \| number \| any\[\] | Solution for the contract. |
|
||||||
| filename | string | Filename of the contract. |
|
| filename | string | Filename of the contract. |
|
||||||
| host | string | Host of the server containing the contract. Optional. Defaults to current server if not provided. |
|
| host | string | Host of the server containing the contract. Optional. Defaults to current server if not provided. |
|
||||||
| opts | [CodingAttemptOptions](./bitburner.codingattemptoptions.md) | Optional parameters for configuring function behavior. |
|
| opts | [CodingAttemptOptions](./bitburner.codingattemptoptions.md) | Optional parameters for configuring function behavior. |
|
||||||
|
Loading…
Reference in New Issue
Block a user