Skip to content

Commit

Permalink
fix: Replace any with a specific type
Browse files Browse the repository at this point in the history
  • Loading branch information
janjakubnanista committed Nov 23, 2023
1 parent 9bb8ed5 commit b9fabef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/create-lz-oapp/src/utilities/prompts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { isPackageManagerAvailable } from "./installation.js"
import { isDirectory } from "./filesystem.js"
import { resolve } from "path"

const handlePromptState = (state: any) => {
const handlePromptState = (state: { aborted: boolean }) => {
if (state.aborted) {
// If we don't re-enable the terminal cursor before exiting
// the program, the cursor will remain hidden
Expand Down

0 comments on commit b9fabef

Please sign in to comment.