export interface SG721ReadOnlyInterface {
contractAddress: string;
ownerOf: ({includeExpired, tokenId}:{includeExpired?: boolean, tokenId?: string}) => Promise<OwnerOfResponse>;
}
could become
export interface OwnerOfParams {
includeExpired?: boolean;
tokenId?: string;
}
export interface SG721ReadOnlyInterface {
contractAddress: string;
ownerOf: (value: OwnerOfParams) => Promise<OwnerOfResponse>;
}
could become