Skip to documentation
Docs navigation
Docs/MemoGrafterCacheConfig
Types

MemoGrafterCacheConfig

TypeScript contract for MemoGrafterCacheConfig.

What it does

TypeScript contract for MemoGrafterCacheConfig.

Use MemoGrafterCacheConfig to keep application code aligned with the values MemoGrafter accepts or returns at this boundary. It is a TypeScript-only contract and adds no runtime behavior.

Definition

TypeScript
interface MemoGrafterCacheConfig {
  connectionString: string;
  ttlSeconds?: number;
}

Result

A compile-time-only TypeScript contract with no runtime value.

Example

example.ts
import type { MemoGrafterCacheConfig } from "memo-grafter";

function useValue(value: MemoGrafterCacheConfig) {
  return value;
}

Important behavior

Use import type when the contract is not needed at runtime.