claude: use tsx instead of experimental-strip-types

This commit is contained in:
2026-03-20 13:18:02 +01:00
parent d88322fe46
commit 80b66be4fc
3 changed files with 550 additions and 8 deletions

View File

@@ -1,12 +1,10 @@
import type { ClientConfig, DynamicData, InitData } from './types.js';
// Numeric parsing strategy for rotator HTTP endpoints
const NumType = {
String: 0,
Int: 1,
Float: 2,
} as const;
type NumType = (typeof NumType)[keyof typeof NumType];
const enum NumType {
String,
Int,
Float,
}
interface EndpointDef {
key: string;