refactor(msjs): replace any with unknown

This commit is contained in:
Kisaragi 2024-02-02 16:41:56 +09:00
parent 66714d94fc
commit 63208457cf
1 changed files with 2 additions and 2 deletions

View File

@ -17,8 +17,8 @@ type Overwrite<T, U extends { [Key in keyof T]?: unknown }> = Omit<
type SwitchCase = {
$switch: {
$cases: [any, any][],
$default: any;
$cases: [unknown, unknown][],
$default: unknown;
};
};