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