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

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