hytopia 0.8.2-dev → 0.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bun-server.mjs +168 -168
- package/docs/server.md +1 -1
- package/docs/server.rgbcolor.md +1 -1
- package/node-server.mjs +168 -168
- package/package.json +1 -1
- package/server.api.json +1 -1
- package/server.d.ts +1 -1
package/package.json
CHANGED
package/server.api.json
CHANGED
|
@@ -42168,7 +42168,7 @@
|
|
|
42168
42168
|
{
|
|
42169
42169
|
"kind": "Interface",
|
|
42170
42170
|
"canonicalReference": "server!RgbColor:interface",
|
|
42171
|
-
"docComment": "/**\n * A RGB color.\n *\n * @public\n */\n",
|
|
42171
|
+
"docComment": "/**\n * A RGB color. r, g and b expect a value between 0 and 255.\n *\n * @public\n */\n",
|
|
42172
42172
|
"excerptTokens": [
|
|
42173
42173
|
{
|
|
42174
42174
|
"kind": "Content",
|
package/server.d.ts
CHANGED
|
@@ -5265,7 +5265,7 @@ export declare type RaycastOptions = {
|
|
|
5265
5265
|
solidMode?: boolean;
|
|
5266
5266
|
} & FilterOptions;
|
|
5267
5267
|
|
|
5268
|
-
/** A RGB color. @public */
|
|
5268
|
+
/** A RGB color. r, g and b expect a value between 0 and 255. @public */
|
|
5269
5269
|
export declare interface RgbColor {
|
|
5270
5270
|
r: number;
|
|
5271
5271
|
g: number;
|