@railpath/finance-toolkit
Version:
Production-ready finance library for portfolio construction, risk analytics, quantitative metrics, and ML-based regime detection
10 lines (9 loc) • 334 B
TypeScript
import { z } from 'zod';
export declare const EqualWeightResultSchema: z.ZodObject<{
equalWeight: z.ZodNumber;
weights: z.ZodArray<z.ZodNumber>;
numberOfAssets: z.ZodNumber;
totalWeight: z.ZodNumber;
sumTo1: z.ZodBoolean;
}, z.core.$strip>;
export type EqualWeightResult = z.infer<typeof EqualWeightResultSchema>;