Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkgs/dsl/__tests__/types/array-method.test-d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ describe('.array() method type constraints', () => {

// ExtractFlowContext should include FlowContext & custom resources
type FlowCtx = ExtractFlowContext<typeof flow>;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

An eslint-disable comment was removed. If this was intentional, ensure the code doesn't trigger the eslint rule that was being disabled. Otherwise, restore the comment.

Spotted by Graphite Agent (based on CI logs)

Fix in Graphite


Is this helpful? React 👍 or 👎 to let us know.

expectTypeOf<FlowCtx>().toMatchTypeOf<{
env: Record<string, string | undefined>;
shutdownSignal: AbortSignal;
Expand Down
2 changes: 1 addition & 1 deletion pkgs/website/src/env.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// eslint-disable-next-line @typescript-eslint/triple-slash-reference
/// <reference path="../.astro/types.d.ts" />
// eslint-disable-next-line @typescript-eslint/triple-slash-reference
/// <reference types="astro/client" />

interface ImportMetaEnv {
Expand Down
Loading