claude: use tsx instead of experimental-strip-types
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user