Revert #409?
See original GitHub issue AudioParam setValueCurveAtTime (sequence<float> values, double startTime, double duration);
dictionary WaveShaperOptions : AudioNodeOptions {
sequence<float> curve;
OverSampleType oversample = "none";
};
@iccir suggested in #408 that we should use Float32Array citing an older spec, but the latest one says it’s sequence<float>
.
#409 also changed VRLayer
and it also has sequence<float>
. (It’s now VRLayerInit
.)
So I suggest that we revert #409, what do you think? @mhegazy
Issue Analytics
- State:
- Created 5 years ago
- Comments:14 (9 by maintainers)
Top Results From Across the Web
How To Fix the “409 Conflict” Error (5 Methods) - Kinsta
The "409 conflict" error can be frustrating, but it is actually easy to fix. Learn how to fix the error using 5 different...
Read more >409 Conflict - HTTP Status Code Glossary - WebFX
What Is a 409 Status Code? The request could not be completed due to a conflict with the current state of the target...
Read more >Unable to revert merge commit · Issue #409 - GitHub
Unable to revert merge commit #409 ... If I press "Revert Commit" on a merge commit the command "git revert --no-commit .
Read more >Reasons for a 409/Conflict HTTP error when uploading a file ...
I've got a method that uses a WebRequest to upload a file to a sharepoint 2010 list/folder, using a PUT request, with the...
Read more >"409 Conflict" causes Runner to not run any jobs, and give up ...
409 Conflict errors are normal and expected in cases where you have ... This is an emergency, delete runner, reset token and register...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
ArrayBufferView
includesDataView
, which I believe isn’t allowed insequence<float>
due to the lack of[]
andlength
.That’s the intended behavior, but there is no good general way in TS to allow it. Explicitly allowing every possible interfaces will be too exhaustive.