How to use the deleteKey function from bindings

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

183
184
185
186
187
188
189
190
191
192
}

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

export function deleteTree(hkey: HKEY, subKey: string): boolean {
  assert(isHKEY(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)