diff --git a/types/ora/index.d.ts b/types/ora/index.d.ts index f5dd605073..d43a01c7cf 100644 --- a/types/ora/index.d.ts +++ b/types/ora/index.d.ts @@ -119,6 +119,8 @@ declare class Ora { text: string; color: Color; + + frameIndex: number; } interface oraFactory { diff --git a/types/ora/tsconfig.json b/types/ora/tsconfig.json index 4092876efe..d283fa111a 100644 --- a/types/ora/tsconfig.json +++ b/types/ora/tsconfig.json @@ -14,10 +14,11 @@ ], "types": [], "noEmit": true, - "forceConsistentCasingInFileNames": true + "forceConsistentCasingInFileNames": true, + "esModuleInterop": true }, "files": [ "index.d.ts", "ora-tests.ts" ] -} \ No newline at end of file +}