IgnoredField interface exported

Last updated: 2026-03-05T10:53:28.867Z

Metrics

LOC: 10 Complexity: 1 Params: 0

Signature

interface IgnoredField

Summary

A field that should be skipped during auto-fill

Source Code

export interface IgnoredField {
  id: string;
  /** URL pattern of the page where this field lives */
  urlPattern: string;
  /** CSS selector of the field */
  selector: string;
  /** Human-readable label */
  label: string;
  createdAt: number;
}

No outgoing dependencies.

Impact (Incoming)

graph LR IgnoredField["IgnoredField"] fillAll["fillAll"] getIgnoredFields["getIgnoredFields"] makeField["makeField"] fillAll -->|uses| IgnoredField getIgnoredFields -->|uses| IgnoredField makeField -->|uses| IgnoredField style IgnoredField fill:#dbeafe,stroke:#2563eb,stroke-width:2px click IgnoredField "96aec4ca58122359.html" click fillAll "388f033c1be0f292.html" click getIgnoredFields "4ae1979d28b4e80b.html" click makeField "4efd84a92001a881.html"
SourceType
fillAll uses
getIgnoredFields uses
makeField uses