UNPKG

jsfast

Version:

Fastjs(jsfast) is a useful, lightweight JavaScript library for any types of project.

6 lines (5 loc) 215 B
type ArrayProxyHandler<T> = { get?: (target: T[], prop: PropertyKey, receiver: any) => any; set: (target: T[], prop: PropertyKey, value: any, receiver: any) => boolean; }; export type { ArrayProxyHandler };