How to use the deleteKeyValue function from bindings

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

200
201
202
203
204
205
206
207
208
209
  valueName: string,
): boolean {
  assert(isHKEY(hkey));
  assert(typeof subKey === 'string');
  assert(typeof valueName === 'string');
  return native.deleteKeyValue(hkey, subKey, valueName);
}

export function deleteValue(hkey: HKEY, valueName: 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)