TypeScript Types
Othent exported TypeScript types.
Events
type OthentEventType = "auth" | "error"type AuthListener = (
userDetails: UserDetails | null,
isAuthenticated: boolean,
) => void;type ErrorListener = (err: Error | OthentError) => void;Dispatch
interface DispatchOptions {
arweave?: Arweave;
node?: UrlString;
}interface ArDriveBundledTransactionResponseData {
id: string;
timestamp: number;
winc: string;
version: string;
deadlineHeight: number;
dataCaches: string[];
fastFinalityIndexes: string[];
public: string;
signature: string;
owner: string;
}DataItem
DataItemLast updated