@nordicsemiconductor/pc-nrfconnect-shared 103.0.0 → 104.0.0
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/Changelog.md +12 -0
- package/coverage/cobertura-coverage.xml +192 -268
- package/nrfutil/device/batch.ts +147 -53
- package/nrfutil/device/batchTypes.ts +2 -2
- package/nrfutil/device/list.ts +1 -2
- package/nrfutil/device/program.ts +1 -1
- package/nrfutil/sandbox.ts +20 -0
- package/nrfutil/sandboxTypes.ts +6 -4
- package/package.json +1 -1
- package/typings/generated/nrfutil/device/batch.d.ts +5 -7
- package/typings/generated/nrfutil/device/batch.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/batchTypes.d.ts +2 -2
- package/typings/generated/nrfutil/device/batchTypes.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/list.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/program.d.ts +1 -0
- package/typings/generated/nrfutil/device/program.d.ts.map +1 -1
- package/typings/generated/nrfutil/sandbox.d.ts +1 -0
- package/typings/generated/nrfutil/sandbox.d.ts.map +1 -1
- package/typings/generated/nrfutil/sandboxTypes.d.ts +5 -4
- package/typings/generated/nrfutil/sandboxTypes.d.ts.map +1 -1
- package/nrfutil/device/eraseBatch.ts +0 -28
- package/nrfutil/device/firmwareReadBatch.ts +0 -42
- package/nrfutil/device/getCoreInfoBatch.ts +0 -29
- package/nrfutil/device/getFwInfoBatch.ts +0 -29
- package/nrfutil/device/getProtectionStatusBatch.ts +0 -32
- package/nrfutil/device/programBatch.ts +0 -69
- package/nrfutil/device/recoverBatch.ts +0 -28
- package/nrfutil/device/resetBatch.ts +0 -30
- package/typings/generated/nrfutil/device/eraseBatch.d.ts +0 -7
- package/typings/generated/nrfutil/device/eraseBatch.d.ts.map +0 -1
- package/typings/generated/nrfutil/device/firmwareReadBatch.d.ts +0 -9
- package/typings/generated/nrfutil/device/firmwareReadBatch.d.ts.map +0 -1
- package/typings/generated/nrfutil/device/getCoreInfoBatch.d.ts +0 -8
- package/typings/generated/nrfutil/device/getCoreInfoBatch.d.ts.map +0 -1
- package/typings/generated/nrfutil/device/getFwInfoBatch.d.ts +0 -8
- package/typings/generated/nrfutil/device/getFwInfoBatch.d.ts.map +0 -1
- package/typings/generated/nrfutil/device/getProtectionStatusBatch.d.ts +0 -8
- package/typings/generated/nrfutil/device/getProtectionStatusBatch.d.ts.map +0 -1
- package/typings/generated/nrfutil/device/programBatch.d.ts +0 -9
- package/typings/generated/nrfutil/device/programBatch.d.ts.map +0 -1
- package/typings/generated/nrfutil/device/recoverBatch.d.ts +0 -7
- package/typings/generated/nrfutil/device/recoverBatch.d.ts.map +0 -1
- package/typings/generated/nrfutil/device/resetBatch.d.ts +0 -8
- package/typings/generated/nrfutil/device/resetBatch.d.ts.map +0 -1
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 2023 Nordic Semiconductor ASA
|
|
3
|
-
*
|
|
4
|
-
* SPDX-License-Identifier: LicenseRef-Nordic-4-Clause
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
BatchOperationWrapper,
|
|
9
|
-
Callbacks,
|
|
10
|
-
convertDeviceCoreType,
|
|
11
|
-
GetCoreInfoOperation,
|
|
12
|
-
} from './batchTypes';
|
|
13
|
-
import { DeviceCore } from './common';
|
|
14
|
-
import { DeviceCoreInfo } from './getCoreInfo';
|
|
15
|
-
|
|
16
|
-
export default (
|
|
17
|
-
core: DeviceCore,
|
|
18
|
-
optionals?: {
|
|
19
|
-
callbacks?: Callbacks<DeviceCoreInfo>;
|
|
20
|
-
}
|
|
21
|
-
): BatchOperationWrapper<GetCoreInfoOperation, DeviceCoreInfo> => ({
|
|
22
|
-
operation: {
|
|
23
|
-
core: convertDeviceCoreType(core),
|
|
24
|
-
operation: {
|
|
25
|
-
type: 'core-info',
|
|
26
|
-
},
|
|
27
|
-
},
|
|
28
|
-
...optionals?.callbacks,
|
|
29
|
-
});
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 2023 Nordic Semiconductor ASA
|
|
3
|
-
*
|
|
4
|
-
* SPDX-License-Identifier: LicenseRef-Nordic-4-Clause
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
BatchOperationWrapper,
|
|
9
|
-
Callbacks,
|
|
10
|
-
convertDeviceCoreType,
|
|
11
|
-
GetFwInfoOperation,
|
|
12
|
-
} from './batchTypes';
|
|
13
|
-
import { DeviceCore } from './common';
|
|
14
|
-
import { FWInfo } from './getFwInfo';
|
|
15
|
-
|
|
16
|
-
export default (
|
|
17
|
-
core: DeviceCore,
|
|
18
|
-
optionals?: {
|
|
19
|
-
callbacks?: Callbacks<FWInfo>;
|
|
20
|
-
}
|
|
21
|
-
): BatchOperationWrapper<GetFwInfoOperation, FWInfo> => ({
|
|
22
|
-
operation: {
|
|
23
|
-
core: convertDeviceCoreType(core),
|
|
24
|
-
operation: {
|
|
25
|
-
type: 'fw-info',
|
|
26
|
-
},
|
|
27
|
-
},
|
|
28
|
-
...optionals?.callbacks,
|
|
29
|
-
});
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 2023 Nordic Semiconductor ASA
|
|
3
|
-
*
|
|
4
|
-
* SPDX-License-Identifier: LicenseRef-Nordic-4-Clause
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
BatchOperationWrapper,
|
|
9
|
-
Callbacks,
|
|
10
|
-
convertDeviceCoreType,
|
|
11
|
-
ProtectionGetOperation,
|
|
12
|
-
} from './batchTypes';
|
|
13
|
-
import { DeviceCore } from './common';
|
|
14
|
-
import { GetProtectionStatusResult } from './getProtectionStatus';
|
|
15
|
-
|
|
16
|
-
export default (
|
|
17
|
-
core: DeviceCore,
|
|
18
|
-
optionals?: {
|
|
19
|
-
callbacks?: Callbacks<GetProtectionStatusResult>;
|
|
20
|
-
}
|
|
21
|
-
): BatchOperationWrapper<
|
|
22
|
-
ProtectionGetOperation,
|
|
23
|
-
GetProtectionStatusResult
|
|
24
|
-
> => ({
|
|
25
|
-
operation: {
|
|
26
|
-
core: convertDeviceCoreType(core),
|
|
27
|
-
operation: {
|
|
28
|
-
type: 'protection-get',
|
|
29
|
-
},
|
|
30
|
-
},
|
|
31
|
-
...optionals?.callbacks,
|
|
32
|
-
});
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 2023 Nordic Semiconductor ASA
|
|
3
|
-
*
|
|
4
|
-
* SPDX-License-Identifier: LicenseRef-Nordic-4-Clause
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
import fs from 'fs';
|
|
8
|
-
import os from 'os';
|
|
9
|
-
import path from 'path';
|
|
10
|
-
import { v4 as uuid } from 'uuid';
|
|
11
|
-
|
|
12
|
-
import {
|
|
13
|
-
BatchOperationWrapper,
|
|
14
|
-
Callbacks,
|
|
15
|
-
convertDeviceCoreType,
|
|
16
|
-
convertProgrammingOptionsType,
|
|
17
|
-
ProgrammingOperation,
|
|
18
|
-
} from './batchTypes';
|
|
19
|
-
import { DeviceCore } from './common';
|
|
20
|
-
import { FirmwareType, ProgrammingOptions } from './program';
|
|
21
|
-
|
|
22
|
-
const program = (
|
|
23
|
-
firmware: string,
|
|
24
|
-
core: DeviceCore,
|
|
25
|
-
optionals?: {
|
|
26
|
-
programmingOptions?: ProgrammingOptions;
|
|
27
|
-
callbacks?: Callbacks;
|
|
28
|
-
}
|
|
29
|
-
): BatchOperationWrapper<ProgrammingOperation> => ({
|
|
30
|
-
operation: {
|
|
31
|
-
core: convertDeviceCoreType(core),
|
|
32
|
-
operation: {
|
|
33
|
-
type: 'program',
|
|
34
|
-
firmware: {
|
|
35
|
-
file: firmware,
|
|
36
|
-
},
|
|
37
|
-
...convertProgrammingOptionsType(optionals?.programmingOptions),
|
|
38
|
-
},
|
|
39
|
-
},
|
|
40
|
-
...optionals?.callbacks,
|
|
41
|
-
});
|
|
42
|
-
|
|
43
|
-
export default (
|
|
44
|
-
firmware: FirmwareType,
|
|
45
|
-
core: DeviceCore,
|
|
46
|
-
optionals?: {
|
|
47
|
-
programmingOptions?: ProgrammingOptions;
|
|
48
|
-
callbacks?: Callbacks;
|
|
49
|
-
}
|
|
50
|
-
) => {
|
|
51
|
-
if (typeof firmware === 'string') {
|
|
52
|
-
return program(firmware, core, optionals);
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
const saveTemp = (): string => {
|
|
56
|
-
let tempFilePath;
|
|
57
|
-
do {
|
|
58
|
-
tempFilePath = path.join(os.tmpdir(), `${uuid()}.${firmware.type}`);
|
|
59
|
-
} while (fs.existsSync(tempFilePath));
|
|
60
|
-
|
|
61
|
-
fs.writeFileSync(tempFilePath, firmware.buffer);
|
|
62
|
-
|
|
63
|
-
return tempFilePath;
|
|
64
|
-
};
|
|
65
|
-
|
|
66
|
-
const tempFilePath = saveTemp();
|
|
67
|
-
|
|
68
|
-
return program(tempFilePath, core, optionals);
|
|
69
|
-
};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 2023 Nordic Semiconductor ASA
|
|
3
|
-
*
|
|
4
|
-
* SPDX-License-Identifier: LicenseRef-Nordic-4-Clause
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
BatchOperationWrapper,
|
|
9
|
-
Callbacks,
|
|
10
|
-
convertDeviceCoreType,
|
|
11
|
-
RecoverOperation,
|
|
12
|
-
} from './batchTypes';
|
|
13
|
-
import { DeviceCore } from './common';
|
|
14
|
-
|
|
15
|
-
export default (
|
|
16
|
-
core?: DeviceCore,
|
|
17
|
-
optionals?: {
|
|
18
|
-
callbacks?: Callbacks;
|
|
19
|
-
}
|
|
20
|
-
): BatchOperationWrapper<RecoverOperation> => ({
|
|
21
|
-
operation: {
|
|
22
|
-
core: convertDeviceCoreType(core),
|
|
23
|
-
operation: {
|
|
24
|
-
type: 'recover',
|
|
25
|
-
},
|
|
26
|
-
},
|
|
27
|
-
...optionals?.callbacks,
|
|
28
|
-
});
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 2023 Nordic Semiconductor ASA
|
|
3
|
-
*
|
|
4
|
-
* SPDX-License-Identifier: LicenseRef-Nordic-4-Clause
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
BatchOperationWrapper,
|
|
9
|
-
Callbacks,
|
|
10
|
-
convertDeviceCoreType,
|
|
11
|
-
ResetOperation,
|
|
12
|
-
} from './batchTypes';
|
|
13
|
-
import { DeviceCore, ResetKind } from './common';
|
|
14
|
-
|
|
15
|
-
export default (
|
|
16
|
-
core?: DeviceCore,
|
|
17
|
-
optionals?: {
|
|
18
|
-
reset?: ResetKind;
|
|
19
|
-
callbacks?: Callbacks;
|
|
20
|
-
}
|
|
21
|
-
): BatchOperationWrapper<ResetOperation> => ({
|
|
22
|
-
operation: {
|
|
23
|
-
core: convertDeviceCoreType(core),
|
|
24
|
-
operation: {
|
|
25
|
-
type: 'reset',
|
|
26
|
-
option: optionals?.reset,
|
|
27
|
-
},
|
|
28
|
-
},
|
|
29
|
-
...optionals?.callbacks,
|
|
30
|
-
});
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { BatchOperationWrapper, Callbacks, EraseOperation } from './batchTypes';
|
|
2
|
-
import { DeviceCore } from './common';
|
|
3
|
-
declare const _default: (core: DeviceCore, optionals?: {
|
|
4
|
-
callbacks?: Callbacks;
|
|
5
|
-
}) => BatchOperationWrapper<EraseOperation>;
|
|
6
|
-
export default _default;
|
|
7
|
-
//# sourceMappingURL=eraseBatch.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"eraseBatch.d.ts","sourceRoot":"","sources":["../../../../nrfutil/device/eraseBatch.ts"],"names":[],"mappings":"AAMA,OAAO,EACH,qBAAqB,EACrB,SAAS,EAET,cAAc,EACjB,MAAM,cAAc,CAAC;AACtB,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;+BAG5B,UAAU,cACJ;IACR,SAAS,CAAC,EAAE,SAAS,CAAC;CACzB,KACF,sBAAsB,cAAc,CAAC;AALxC,wBAaG"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
|
-
import { BatchOperationWrapper, Callbacks, FirmwareReadOperation } from './batchTypes';
|
|
3
|
-
import { DeviceCore } from './common';
|
|
4
|
-
import { DeviceBuffer } from './firmwareRead';
|
|
5
|
-
declare const _default: (core: DeviceCore, optionals?: {
|
|
6
|
-
callbacks?: Callbacks<Buffer>;
|
|
7
|
-
}) => BatchOperationWrapper<FirmwareReadOperation, DeviceBuffer>;
|
|
8
|
-
export default _default;
|
|
9
|
-
//# sourceMappingURL=firmwareReadBatch.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"firmwareReadBatch.d.ts","sourceRoot":"","sources":["../../../../nrfutil/device/firmwareReadBatch.ts"],"names":[],"mappings":";AAMA,OAAO,EACH,qBAAqB,EACrB,SAAS,EAET,qBAAqB,EACxB,MAAM,cAAc,CAAC;AACtB,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AACtC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;+BAGpC,UAAU,cACJ;IACR,SAAS,CAAC,EAAE,UAAU,MAAM,CAAC,CAAC;CACjC,KACF,sBAAsB,qBAAqB,EAAE,YAAY,CAAC;AAL7D,wBA0BG"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { BatchOperationWrapper, Callbacks, GetCoreInfoOperation } from './batchTypes';
|
|
2
|
-
import { DeviceCore } from './common';
|
|
3
|
-
import { DeviceCoreInfo } from './getCoreInfo';
|
|
4
|
-
declare const _default: (core: DeviceCore, optionals?: {
|
|
5
|
-
callbacks?: Callbacks<DeviceCoreInfo>;
|
|
6
|
-
}) => BatchOperationWrapper<GetCoreInfoOperation, DeviceCoreInfo>;
|
|
7
|
-
export default _default;
|
|
8
|
-
//# sourceMappingURL=getCoreInfoBatch.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"getCoreInfoBatch.d.ts","sourceRoot":"","sources":["../../../../nrfutil/device/getCoreInfoBatch.ts"],"names":[],"mappings":"AAMA,OAAO,EACH,qBAAqB,EACrB,SAAS,EAET,oBAAoB,EACvB,MAAM,cAAc,CAAC;AACtB,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AACtC,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;+BAGrC,UAAU,cACJ;IACR,SAAS,CAAC,EAAE,UAAU,cAAc,CAAC,CAAC;CACzC,KACF,sBAAsB,oBAAoB,EAAE,cAAc,CAAC;AAL9D,wBAaG"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { BatchOperationWrapper, Callbacks, GetFwInfoOperation } from './batchTypes';
|
|
2
|
-
import { DeviceCore } from './common';
|
|
3
|
-
import { FWInfo } from './getFwInfo';
|
|
4
|
-
declare const _default: (core: DeviceCore, optionals?: {
|
|
5
|
-
callbacks?: Callbacks<FWInfo>;
|
|
6
|
-
}) => BatchOperationWrapper<GetFwInfoOperation, FWInfo>;
|
|
7
|
-
export default _default;
|
|
8
|
-
//# sourceMappingURL=getFwInfoBatch.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"getFwInfoBatch.d.ts","sourceRoot":"","sources":["../../../../nrfutil/device/getFwInfoBatch.ts"],"names":[],"mappings":"AAMA,OAAO,EACH,qBAAqB,EACrB,SAAS,EAET,kBAAkB,EACrB,MAAM,cAAc,CAAC;AACtB,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AACtC,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;+BAG3B,UAAU,cACJ;IACR,SAAS,CAAC,EAAE,UAAU,MAAM,CAAC,CAAC;CACjC,KACF,sBAAsB,kBAAkB,EAAE,MAAM,CAAC;AALpD,wBAaG"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { BatchOperationWrapper, Callbacks, ProtectionGetOperation } from './batchTypes';
|
|
2
|
-
import { DeviceCore } from './common';
|
|
3
|
-
import { GetProtectionStatusResult } from './getProtectionStatus';
|
|
4
|
-
declare const _default: (core: DeviceCore, optionals?: {
|
|
5
|
-
callbacks?: Callbacks<GetProtectionStatusResult>;
|
|
6
|
-
}) => BatchOperationWrapper<ProtectionGetOperation, GetProtectionStatusResult>;
|
|
7
|
-
export default _default;
|
|
8
|
-
//# sourceMappingURL=getProtectionStatusBatch.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"getProtectionStatusBatch.d.ts","sourceRoot":"","sources":["../../../../nrfutil/device/getProtectionStatusBatch.ts"],"names":[],"mappings":"AAMA,OAAO,EACH,qBAAqB,EACrB,SAAS,EAET,sBAAsB,EACzB,MAAM,cAAc,CAAC;AACtB,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AACtC,OAAO,EAAE,yBAAyB,EAAE,MAAM,uBAAuB,CAAC;+BAGxD,UAAU,cACJ;IACR,SAAS,CAAC,EAAE,UAAU,yBAAyB,CAAC,CAAC;CACpD,KACF,sBACC,sBAAsB,EACtB,yBAAyB,CAC5B;AARD,wBAgBG"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { BatchOperationWrapper, Callbacks, ProgrammingOperation } from './batchTypes';
|
|
2
|
-
import { DeviceCore } from './common';
|
|
3
|
-
import { FirmwareType, ProgrammingOptions } from './program';
|
|
4
|
-
declare const _default: (firmware: FirmwareType, core: DeviceCore, optionals?: {
|
|
5
|
-
programmingOptions?: ProgrammingOptions;
|
|
6
|
-
callbacks?: Callbacks;
|
|
7
|
-
}) => BatchOperationWrapper<ProgrammingOperation, void>;
|
|
8
|
-
export default _default;
|
|
9
|
-
//# sourceMappingURL=programBatch.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"programBatch.d.ts","sourceRoot":"","sources":["../../../../nrfutil/device/programBatch.ts"],"names":[],"mappings":"AAWA,OAAO,EACH,qBAAqB,EACrB,SAAS,EAGT,oBAAoB,EACvB,MAAM,cAAc,CAAC;AACtB,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AACtC,OAAO,EAAE,YAAY,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC;mCAwB/C,YAAY,QAChB,UAAU,cACJ;IACR,kBAAkB,CAAC,EAAE,kBAAkB,CAAC;IACxC,SAAS,CAAC,EAAE,SAAS,CAAC;CACzB;AANL,wBA0BE"}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { BatchOperationWrapper, Callbacks, RecoverOperation } from './batchTypes';
|
|
2
|
-
import { DeviceCore } from './common';
|
|
3
|
-
declare const _default: (core?: DeviceCore, optionals?: {
|
|
4
|
-
callbacks?: Callbacks;
|
|
5
|
-
}) => BatchOperationWrapper<RecoverOperation>;
|
|
6
|
-
export default _default;
|
|
7
|
-
//# sourceMappingURL=recoverBatch.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"recoverBatch.d.ts","sourceRoot":"","sources":["../../../../nrfutil/device/recoverBatch.ts"],"names":[],"mappings":"AAMA,OAAO,EACH,qBAAqB,EACrB,SAAS,EAET,gBAAgB,EACnB,MAAM,cAAc,CAAC;AACtB,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;gCAG3B,UAAU,cACL;IACR,SAAS,CAAC,EAAE,SAAS,CAAC;CACzB,KACF,sBAAsB,gBAAgB,CAAC;AAL1C,wBAaG"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { BatchOperationWrapper, Callbacks, ResetOperation } from './batchTypes';
|
|
2
|
-
import { DeviceCore, ResetKind } from './common';
|
|
3
|
-
declare const _default: (core?: DeviceCore, optionals?: {
|
|
4
|
-
reset?: ResetKind;
|
|
5
|
-
callbacks?: Callbacks;
|
|
6
|
-
}) => BatchOperationWrapper<ResetOperation>;
|
|
7
|
-
export default _default;
|
|
8
|
-
//# sourceMappingURL=resetBatch.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"resetBatch.d.ts","sourceRoot":"","sources":["../../../../nrfutil/device/resetBatch.ts"],"names":[],"mappings":"AAMA,OAAO,EACH,qBAAqB,EACrB,SAAS,EAET,cAAc,EACjB,MAAM,cAAc,CAAC;AACtB,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;gCAGtC,UAAU,cACL;IACR,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,SAAS,CAAC,EAAE,SAAS,CAAC;CACzB,KACF,sBAAsB,cAAc,CAAC;AANxC,wBAeG"}
|