import polyfill = require("./implementation"); import getImpl = require("./polyfill"); import shimImpl = require("./shim"); /** * Returns an object containing all own property descriptors of an object * @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object. */ declare function getOwnPropertyDescriptors( o: T, ): & { -readonly [P in keyof T]: TypedPropertyDescriptor; } & { [property: string]: PropertyDescriptor; }; declare namespace getOwnPropertyDescriptors { function getPolyfill(): ReturnType; const implementation: typeof polyfill; function shim(): ReturnType; } export = getOwnPropertyDescriptors;