How to use the deleteTree function from bindings

Find comprehensive JavaScript bindings.deleteTree code examples handpicked from public code repositorys.

189
190
191
192
193
194
195
196
197
198
}

export function deleteTree(hkey: HKEY, subKey: string): boolean {
  assert(isHKEY(hkey));
  assert(typeof subKey === 'string');
  return native.deleteTree(hkey, subKey);
}

export function deleteKeyValue(
  hkey: HKEY,
fork icon7
star icon0
watch icon3

Other functions in bindings

Sorted by popularity

function icon

bindings.createKey is the most popular function in bindings (8616 examples)