We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe86401 commit fe6fa9aCopy full SHA for fe6fa9a
blazebuild/src/main/typescript/io/IO.ts
@@ -5,7 +5,7 @@ import Blaze from "../core/Blaze";
5
const now = performance.now();
6
7
class IO {
8
- public static println(message: string): void {
+ public static println(message: unknown): void {
9
console.log(message);
10
}
11
blazebuild/src/main/typescript/types/build.ts
@@ -9,5 +9,5 @@ declare global {
setProperties(properties: Partial<ProjectProperties>): void;
};
12
- function println(message: string): void;
+ function println(message: unknown): void;
13
0 commit comments