UNPKG

@nova-ui/bits

Version:

SolarWinds Nova Framework

8 lines (7 loc) 248 B
/** The nameof operator obtains the name of a object member as a string constant * USAGE EXAMPLE console.log(nameof<Interface>("prop")); // "prop" */ export declare function nameof<T extends object>(prop: Extract<keyof T, string>): string;