deleteRuntimeModel function domain exported
Last updated: 2026-02-24T19:46:21.733Z
Metrics
LOC: 8
Complexity: 1
Params: 0
Signature
deleteRuntimeModel(): : Promise<void>
Summary
Deletes the runtime-trained model from storage.
Source Code
export async function deleteRuntimeModel(): Promise<void> {
await chrome.storage.local.remove([
RUNTIME_MODEL_KEY,
RUNTIME_VOCAB_KEY,
RUNTIME_LABELS_KEY,
RUNTIME_META_KEY,
]);
}
No outgoing dependencies.
Impact (Incoming)
| Source | Type |
|---|---|
| handle | uses |