harb/services/ponder/ponder-env.d.ts
2025-09-30 20:02:43 +02:00

21 lines
688 B
TypeScript

/// <reference types="ponder/virtual" />
declare module "ponder:internal" {
const config: typeof import("./ponder.config.ts");
const schema: typeof import("./ponder.schema.ts");
}
declare module "ponder:schema" {
export * from "./ponder.schema.ts";
}
declare module "*.json" {
import type { Abi } from 'viem'
const value: { abi: Abi }
export default value
}
// This file enables type checking and editor autocomplete for this Ponder project.
// After upgrading, you may find that changes have been made to this file.
// If this happens, please commit the changes. Do not manually edit this file.
// See https://ponder.sh/docs/requirements#typescript for more information.