@types/selenium-webdriver
Version:
TypeScript definitions for selenium-webdriver
17 lines (15 loc) • 622 B
TypeScript
export interface ISymbols {
/**
* The serialize symbol specifies a method that returns an object's serialized
* representation. If an object's serialized form is not immediately
* available, the serialize method will return a promise that will be resolved
* with the serialized form.
*
* Note that the described method is analogous to objects that define a
* `toJSON()` method, except the serialized result may be a promise, or
* another object with a promised property.
*/
readonly serialize: unique symbol;
}
declare const Symbols: ISymbols;
export default Symbols;