You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Device Bound Session Credentials: A Protocol for Protecting From Cookie Theft",
143196
143198
"isPrivate": false,
143197
143199
"createdAt": "2023-07-06T00:27:27Z",
143198
143200
"labels": [
@@ -146943,18 +146945,6 @@
146943
146945
"name": "spec clarification",
146944
146946
"color": "E5190C"
146945
146947
},
146946
-
{
146947
-
"name": "status: duplicate",
146948
-
"color": "f9d0c4"
146949
-
},
146950
-
{
146951
-
"name": "status: invalid",
146952
-
"color": "8C5421"
146953
-
},
146954
-
{
146955
-
"name": "status: resolved",
146956
-
"color": "0E8A16"
146957
-
},
146958
146948
{
146959
146949
"name": "supportive: chrome",
146960
146950
"color": "FBCA04"
@@ -146999,6 +146989,10 @@
146999
146989
"name": "topic: automated testing",
147000
146990
"color": "4D405F"
147001
146991
},
146992
+
{
146993
+
"name": "topic: background scripting",
146994
+
"color": "6B1CB8"
146995
+
},
147002
146996
{
147003
146997
"name": "topic: browser settings",
147004
146998
"color": "8B3153"
@@ -147031,6 +147025,10 @@
147031
147025
"name": "topic: localization",
147032
147026
"color": "006b75"
147033
147027
},
147028
+
{
147029
+
"name": "topic: menus",
147030
+
"color": "677BCA"
147031
+
},
147034
147032
{
147035
147033
"name": "topic: navigation",
147036
147034
"color": "1A12DB"
@@ -147063,10 +147061,6 @@
147063
147061
"name": "topic: secure storage",
147064
147062
"color": "B94DD3"
147065
147063
},
147066
-
{
147067
-
"name": "topic: service worker",
147068
-
"color": "6B1CB8"
147069
-
},
147070
147064
{
147071
147065
"name": "topic: storage",
147072
147066
"color": "006b75"
@@ -177748,7 +177742,9 @@
177748
177742
"color": "ffffff"
177749
177743
}
177750
177744
],
177751
-
"defaultBranch": null,
177745
+
"defaultBranch": {
177746
+
"name": "main"
177747
+
},
177752
177748
"environments": {
177753
177749
"nodes": []
177754
177750
},
@@ -177760,9 +177756,13 @@
177760
177756
"autoPublish": null,
177761
177757
"travis": null,
177762
177758
"contributing": null,
177763
-
"license": null,
177759
+
"license": {
177760
+
"text": "All Reports in this Repository are licensed by Contributors\r\nunder the\r\n[W3C Software and Document License](https://www.w3.org/copyright/software-license/).\r\n\r\nContributions to Specifications are made under the\r\n[W3C CLA](https://www.w3.org/community/about/agreements/cla/).\r\n\r\nContributions to Test Suites are made under the\r\n[W3C 3-clause BSD License](https://www.w3.org/copyright/3-clause-bsd-license-2008/)."
177761
+
},
177764
177762
"codeOfConduct": null,
177765
-
"readme": null
177763
+
"readme": {
177764
+
"text": "# TypeScript Types Declarations for WebNN\r\n\r\nThis package contains the TypeScript type declaration (`.d.ts`) files for the [WebNN API](https://webmachinelearning.github.io/webnn/)\r\n\r\n# Using Types\r\n\r\n## Installing\r\n\r\n* npm: ` npm install --save-dev @webnn/types`\r\n* yarn: `yarn add --dev @webnn/types`\r\n* pnpm: `pnpm add -D @webnn/types`\r\n\r\n## Configuring\r\n\r\nSince this package is outside of [DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped), the types won't be automatically picked up. The following is a list of ways to add it to type lookup.\r\n\r\n### In `tscofig.json`\r\n\r\n#### Using `types`\r\n```json\r\n{\r\n \"compilerOptions\": {\r\n \"types\": [\"@webnn/types\"]\r\n }\r\n}\r\n```\r\n#### Using `typeRoots`\r\n```json\r\n{\r\n \"compilerOptions\": {\r\n \"typeRoots\": [\r\n \"./node_modules/@webnn/types\",\r\n \"./node_modules/@types\"\r\n ]\r\n }\r\n}\r\n```\r\nThis package uses `webnn` instead of `dist` so that both `@webnn/types` and `@webgpu/types` can be used in `typeRoots`.\r\n\r\n\r\n# Updating Types\r\n\r\n1. Update WebNN specification under `spec`\r\n `git submodule update --init --recursive`\r\n2. Generate types with `npm run generate`\r\n3. Manually update `webnn/index.d.ts` with changes from `generate/index.d.ts`. Note that there are intentional differences between the versions under `generate/` and `webnn/`.\r\n4. Push changes to all files under `generated/` and `webnn/`.\r\n\r\n# Credits\r\nThis repository is based on the work done by the WebGPU team for their typing files. Without their work on [@webgpu/types](https://github.com/gpuweb/types/), the WebNN types would have been much harder to create.\r\n"
0 commit comments