vike
Version:
(Replaces Next.js/Nuxt) 🔨 Composable framework to build advanced applications with flexibility and stability.
10 lines (9 loc) • 360 B
TypeScript
export { getPropVal };
export { setPropVal };
export { getPropKeys };
import '../../../assertEnvServer.js';
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[];