UNPKG

@railpath/finance-toolkit

Version:

Production-ready finance library for portfolio construction, risk analytics, quantitative metrics, and ML-based regime detection

7 lines (6 loc) 249 B
import { z } from 'zod'; export declare const BetaOptionsSchema: z.ZodObject<{ assetReturns: z.ZodArray<z.ZodNumber>; benchmarkReturns: z.ZodArray<z.ZodNumber>; }, z.core.$strip>; export type BetaOptions = z.infer<typeof BetaOptionsSchema>;