/* Generated by ts-generator ver. 0.0.8 */ /* tslint:disable */ import BN from "bn.js"; import Contract, { contractOptions } from "web3/eth/contract"; import { EventLog, Callback, EventEmitter } from "web3/types"; import { TransactionObject, BlockType } from "web3/eth/types"; import { ContractEvent } from "./types"; interface EventOptions { filter?: object; fromBlock?: BlockType; topics?: string[]; } export class Ownable extends Contract { constructor( jsonInterface: any[], address?: string, options?: contractOptions ); clone(): Ownable; methods: { transferOwnership(newOwner: string): TransactionObject; owner(): TransactionObject; }; events: { OwnershipTransferred: ContractEvent<{ previousOwner: string; newOwner: string; 0: string; 1: string; }>; allEvents: ( options?: EventOptions, cb?: Callback ) => EventEmitter; }; }