@promptbook/markdown-utils 0.81.0-11 → 0.81.0-12
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/README.md +1 -1
- package/esm/index.es.js +31 -5
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/utils.index.d.ts +2 -0
- package/esm/typings/src/other/templates/getBookTemplate.d.ts +3 -5
- package/esm/typings/src/scrapers/_common/utils/scraperFetch.d.ts +3 -0
- package/esm/typings/src/scripting/javascript/utils/preserve.d.ts +1 -0
- package/esm/typings/src/utils/validators/filePath/isPathRoot.d.ts +12 -0
- package/esm/typings/src/utils/validators/filePath/isPathRoot.test.d.ts +4 -0
- package/esm/typings/src/utils/validators/filePath/isValidFilePath.d.ts +3 -0
- package/esm/typings/src/wizzard/$getCompiledBook.d.ts +16 -0
- package/esm/typings/src/wizzard/wizzard.d.ts +3 -3
- package/package.json +1 -1
- package/umd/index.umd.js +31 -5
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/scripting/javascript/utils/unknownToString.d.ts +0 -8
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { really_unknown } from '../../../utils/organization/really_unknown';
|
|
2
|
-
/**
|
|
3
|
-
* Converts anything to string that can be used for debugging and logging
|
|
4
|
-
*
|
|
5
|
-
* @param value String value for logging
|
|
6
|
-
* @private internal util
|
|
7
|
-
*/
|
|
8
|
-
export declare function unknownToString(value: really_unknown): string;
|