From 920aeb1e05f7cd807042673ebed8e2c640841dc5 Mon Sep 17 00:00:00 2001 From: Mykola Mokhnach Date: Tue, 9 Jan 2024 22:02:16 +0100 Subject: [PATCH] tune docs --- lib/commands/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/commands/types.ts b/lib/commands/types.ts index c7b97306..e8c7dc61 100644 --- a/lib/commands/types.ts +++ b/lib/commands/types.ts @@ -1102,9 +1102,9 @@ export interface DeviceidleOpts { } export interface SendTrimMemoryOpts { - /** The package name to send trimMemory event to */ + /** The package name to send the `trimMemory` event to */ pkg: string; - /** The atual trim level */ + /** The actual memory trim level to be sent */ level: 'COMPLETE' | 'MODERATE' | 'BACKGROUND' | 'UI_HIDDEN' | 'RUNNING_CRITICAL' | 'RUNNING_LOW' | 'RUNNING_MODERATE'; }