UNPKG

@finsweet/ts-utils

Version:

Typescript utils for custom Webflow projects.

7 lines (6 loc) 188 B
/** * Gets the keys of an object with inferred typing. * @param object * @returns */ export declare const getObjectKeys: <T extends Record<string, unknown>>(object: T) => (keyof T)[];