Fix TypeScript runtime declaration

This commit is contained in:
Wakeful-Cloud
2021-10-24 04:05:47 +00:00
committed by GitHub
parent 126cc78d1a
commit 01dd0cd0b2
3 changed files with 9 additions and 9 deletions

View File

@@ -174,9 +174,9 @@ interface Size {
```ts
interface RGBA {
r,
g,
b,
r: number;
g: number;
b: number;
a: number;
}
```

View File

@@ -189,9 +189,9 @@ interface Size {
```ts
interface RGBA {
r;
g;
b;
r: number;
g: number;
b: number;
a: number;
}
```