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 4616e98 commit 1a93a1aCopy full SHA for 1a93a1a
global.d.ts
@@ -0,0 +1 @@
1
+declare var __DEV__: boolean;
src/types.ts
@@ -35,3 +35,6 @@ export type WizardValues = {
35
/** Indicate if the current step is the last step (aka no next step) */
36
isLastStep: boolean;
37
} | null;
38
+
39
+/** Console log levels */
40
+export type LogLevel = 'info' | 'error' | 'warn';
tsconfig.json
@@ -1,6 +1,6 @@
{
2
// see https://www.typescriptlang.org/tsconfig to better understand tsconfigs
3
- "include": ["src", "types"],
+ "include": ["src", "global.d.ts"],
4
"compilerOptions": {
5
"module": "esnext",
6
"lib": ["dom", "esnext"],
0 commit comments