/**
 * Return an array of keys that are present in this dictionary
 *
 * TODO(Trevor): Replace with `Object.keys`?
 *
 * @template T
 * @param {T} dictionary
 * @returns {Array<keyof T>}
 */
export default function dictKeys<T>(dictionary: T): Array<keyof T>;
