UNPKG

@dderevjanik/termux-api

Version:

This library allows you to interact with your Android device from Node.js using termux-api

21 lines (20 loc) 409 B
export interface CallLog { } export interface CallLogOptions { /** * limit in retrieved call log * @default 10 */ limit?: number; /** * offset in call log * @default 0 */ offset?: number; } /** * List call log history * * **Requires permission:** `android.permission.READ_CALL_LOG` */ export declare function callLog(options?: CallLogOptions): Promise<void>;