mrs-toolbox-cli 0.0.136 → 0.0.137
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/clikt-clikt-mordant.js +17 -17
- package/clikt-clikt.js +1257 -1257
- package/colormath-root-colormath.js +430 -430
- package/kotlin-kotlin-stdlib.js +14 -14
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js +1 -1
- package/mordant-mordant.js +561 -561
- package/mrs-toolbox-cli.d.ts +26 -0
- package/mrs-toolbox-cli.js +176 -176
- package/package.json +1 -1
- package/toolbox.js +1566 -1223
- package/toolbox.js.map +1 -1
package/mrs-toolbox-cli.d.ts
CHANGED
|
@@ -2461,6 +2461,32 @@ export declare namespace types {
|
|
|
2461
2461
|
} & dto.WithId["__doNotUseOrImplementIt"];
|
|
2462
2462
|
}
|
|
2463
2463
|
}
|
|
2464
|
+
export declare namespace types.internal {
|
|
2465
|
+
class DashboardsManifest {
|
|
2466
|
+
constructor(dictionaries?: kotlin.collections.KtList<types.internal.DashboardDictionary>);
|
|
2467
|
+
get dictionaries(): kotlin.collections.KtList<types.internal.DashboardDictionary>;
|
|
2468
|
+
set dictionaries(value: kotlin.collections.KtList<types.internal.DashboardDictionary>);
|
|
2469
|
+
copy(dictionaries?: kotlin.collections.KtList<types.internal.DashboardDictionary>): types.internal.DashboardsManifest;
|
|
2470
|
+
toString(): string;
|
|
2471
|
+
hashCode(): number;
|
|
2472
|
+
equals(other: Nullable<any>): boolean;
|
|
2473
|
+
static get Companion(): {
|
|
2474
|
+
};
|
|
2475
|
+
}
|
|
2476
|
+
class DashboardDictionary {
|
|
2477
|
+
constructor(name?: string, dashboards?: kotlin.collections.KtList<string>);
|
|
2478
|
+
get name(): string;
|
|
2479
|
+
set name(value: string);
|
|
2480
|
+
get dashboards(): kotlin.collections.KtList<string>;
|
|
2481
|
+
set dashboards(value: kotlin.collections.KtList<string>);
|
|
2482
|
+
copy(name?: string, dashboards?: kotlin.collections.KtList<string>): types.internal.DashboardDictionary;
|
|
2483
|
+
toString(): string;
|
|
2484
|
+
hashCode(): number;
|
|
2485
|
+
equals(other: Nullable<any>): boolean;
|
|
2486
|
+
static get Companion(): {
|
|
2487
|
+
};
|
|
2488
|
+
}
|
|
2489
|
+
}
|
|
2464
2490
|
export declare namespace types.internal {
|
|
2465
2491
|
class Manifest {
|
|
2466
2492
|
constructor(app?: dto.manifest.ManifestApp, build?: dto.manifest.ManifestBuild);
|