X-Git-Url: https://git.josue.xyz/?p=dotfiles%2F.git;a=blobdiff_plain;f=.config%2Fcoc%2Fextensions%2Fnode_modules%2Fcoc-tsserver%2Fnode_modules%2Ftypescript%2Flib%2Flib.es2017.sharedmemory.d.ts;h=0f69609af920c2abf9b0f1fc9e261f5ea0c265e3;hp=2a40ea774438f23e657aeeefbec157bb0e035bd8;hb=4d07c77cf4d78cab8639e13ddc3c22495e585b0b;hpb=b3950616b54221c40a7dab9099bda675007e5b6e diff --git a/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts b/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts index 2a40ea77..0f69609a 100644 --- a/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts +++ b/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts @@ -27,10 +27,6 @@ interface SharedArrayBuffer { */ readonly byteLength: number; - /* - * The SharedArrayBuffer constructor's length property whose value is 1. - */ - length: number; /** * Returns a section of an SharedArrayBuffer. */ @@ -122,8 +118,11 @@ interface Atomics { /** * Wakes up sleeping agents that are waiting on the given index of the array, returning the * number of agents that were awoken. + * @param typedArray A shared Int32Array. + * @param index The position in the typedArray to wake up on. + * @param count The number of sleeping agents to notify. Defaults to +Infinity. */ - notify(typedArray: Int32Array, index: number, count: number): number; + notify(typedArray: Int32Array, index: number, count?: number): number; /** * Stores the bitwise XOR of a value with the value at the given position in the array,