UNPKG

vike

Version:

The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.

9 lines (8 loc) 322 B
export { getPropVal }; export { setPropVal }; export { getPropKeys }; declare function getPropVal(obj: Record<string, unknown>, prop: string): null | { value: unknown; }; declare function setPropVal(obj: Record<string, unknown>, prop: string, val: unknown): void; declare function getPropKeys(prop: string): string[];