MCPcopy Index your code
hub / github.com/nativewind/nativewind / ValidationResult

Interface ValidationResult

scripts/validate-urls.ts:3–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import fs from 'fs';
2
3interface ValidationResult {
4 file: string;
5 invalidUrls: Array<{
6 url: string;
7 line: number;
8 reason: string;
9 }>;
10}
11
12async function validateUrl(url: string): Promise<boolean> {
13 try {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…