karakum 1.0.0-alpha.92 → 1.0.0-alpha.94

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 CHANGED
@@ -21,7 +21,7 @@ Gradle plugin for Kotlin Gradle projects:
21
21
 
22
22
  ```kotlin
23
23
  plugins {
24
- id("io.github.sgrishchenko.karakum") version "1.0.0-alpha.92"
24
+ id("io.github.sgrishchenko.karakum") version "1.0.0-alpha.94"
25
25
  }
26
26
  ```
27
27
 
@@ -165,6 +165,7 @@ export declare function renderNullable(node: Nullable<TypeNode>, isNullable: boo
165
165
  export declare function extractTypeParameters(node: Node, context: Context): Array<Tuple2<Node, Declaration>>;
166
166
  export declare function renderDeclaration(result: Array<Tuple2<Node, Declaration>>, render: Render<Node>): string;
167
167
  export declare function renderReference(result: Array<Tuple2<Node, Declaration>>, render: Render<Node>): string;
168
+ export declare function isBuiltin(node: Node, context: Context): boolean;
168
169
  export declare const annotationServiceKey: { get(): ContextKey<AnnotationService>; };
169
170
  export declare class AnnotationService {
170
171
  private constructor();