karakum 1.0.0-alpha.93 → 1.0.0-alpha.95
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/kotlin/karakum-types.d.ts +0 -1
- package/kotlin/karakum.d.mts +4 -4
- package/kotlin/karakum.mjs +886 -773
- package/kotlin/karakum.mjs.map +1 -1
- package/kotlin/kotlin-js.mjs +5 -5
- package/kotlin/kotlin-kotlin-stdlib.mjs +273 -162
- package/kotlin/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/kotlin/kotlinx-atomicfu.mjs +4 -4
- package/kotlin/kotlinx-coroutines-core.mjs +578 -578
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -26,7 +26,6 @@ export type ReadonlyRecord<K extends PropertyKey, V> = Readonly<Record<K, V>>
|
|
|
26
26
|
export type Rule = string | ReadonlyRecord<string, string>
|
|
27
27
|
export type Tuple2<A, B> = [A, B]
|
|
28
28
|
|
|
29
|
-
export type Granularity = "bundle" | "file" | "top-level"
|
|
30
29
|
export type NamespaceStrategy = "ignore" | "object" | "package"
|
|
31
30
|
export type ConflictResolutionStrategy = "join" | "replace" | "error"
|
|
32
31
|
export type InputResolutionStrategy = "node" | "plain"
|
package/kotlin/karakum.d.mts
CHANGED
|
@@ -26,7 +26,6 @@ export type ReadonlyRecord<K extends PropertyKey, V> = Readonly<Record<K, V>>
|
|
|
26
26
|
export type Rule = string | ReadonlyRecord<string, string>
|
|
27
27
|
export type Tuple2<A, B> = [A, B]
|
|
28
28
|
|
|
29
|
-
export type Granularity = "bundle" | "file" | "top-level"
|
|
30
29
|
export type NamespaceStrategy = "ignore" | "object" | "package"
|
|
31
30
|
export type ConflictResolutionStrategy = "join" | "replace" | "error"
|
|
32
31
|
export type InputResolutionStrategy = "node" | "plain"
|
|
@@ -66,7 +65,7 @@ export declare interface SchemaConfiguration {
|
|
|
66
65
|
readonly ignoreOutput?: Nullable<Many<string>>;
|
|
67
66
|
readonly libraryName?: Nullable<string>;
|
|
68
67
|
readonly libraryNameOutputPrefix?: Nullable<boolean>;
|
|
69
|
-
readonly
|
|
68
|
+
readonly isolatedOutputPackage?: Nullable<boolean>;
|
|
70
69
|
readonly plugins?: Nullable<Many<any>>;
|
|
71
70
|
readonly injections?: Nullable<Many<any>>;
|
|
72
71
|
readonly annotations?: Nullable<Many<any>>;
|
|
@@ -105,7 +104,7 @@ export declare interface Configuration {
|
|
|
105
104
|
readonly ignoreOutput: Array<string>;
|
|
106
105
|
readonly libraryName: string;
|
|
107
106
|
readonly libraryNameOutputPrefix: boolean;
|
|
108
|
-
readonly
|
|
107
|
+
readonly isolatedOutputPackage: boolean;
|
|
109
108
|
readonly plugins: Array<Plugin>;
|
|
110
109
|
readonly injections: Array<Injection>;
|
|
111
110
|
readonly annotations: Array<(p0: Node, p1: AnnotationContext) => Nullable<string>>;
|
|
@@ -165,6 +164,7 @@ export declare function renderNullable(node: Nullable<TypeNode>, isNullable: boo
|
|
|
165
164
|
export declare function extractTypeParameters(node: Node, context: Context): Array<Tuple2<Node, Declaration>>;
|
|
166
165
|
export declare function renderDeclaration(result: Array<Tuple2<Node, Declaration>>, render: Render<Node>): string;
|
|
167
166
|
export declare function renderReference(result: Array<Tuple2<Node, Declaration>>, render: Render<Node>): string;
|
|
167
|
+
export declare function isBuiltin(node: Node, context: Context): boolean;
|
|
168
168
|
export declare const annotationServiceKey: { get(): ContextKey<AnnotationService>; };
|
|
169
169
|
export declare class AnnotationService {
|
|
170
170
|
private constructor();
|
|
@@ -289,7 +289,7 @@ export declare namespace NameResolverService {
|
|
|
289
289
|
export declare const namespaceInfoServiceKey: { get(): ContextKey<NamespaceInfoService>; };
|
|
290
290
|
export declare class NamespaceInfoService {
|
|
291
291
|
private constructor();
|
|
292
|
-
resolveNamespaceStrategy(node: ModuleDeclaration):
|
|
292
|
+
resolveNamespaceStrategy(node: ModuleDeclaration): NamespaceStrategy;
|
|
293
293
|
}
|
|
294
294
|
export declare namespace NamespaceInfoService {
|
|
295
295
|
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|