mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-03-10 05:35:05 +08:00
fixed incorrect type
This commit is contained in:
parent
8a5fbc4751
commit
e02f1b14d1
1 changed files with 1 additions and 1 deletions
2
frontend/src/scripts/types/types.d.ts
vendored
2
frontend/src/scripts/types/types.d.ts
vendored
|
@ -95,7 +95,7 @@ declare namespace MonkeyTypes {
|
|||
|
||||
type CustomBackgroundSize = "cover" | "contain" | "max";
|
||||
|
||||
type CustomBackgroundFilter = [0 | 1, 0 | 1, 0 | 1, 0 | 1, 0 | 1];
|
||||
type CustomBackgroundFilter = [number, number, number, number, number];
|
||||
|
||||
/*
|
||||
off = off
|
||||
|
|
Loading…
Reference in a new issue