This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Expect, Equal } from "@type-challenges/utils" | |
type MyPick<T extends object, K extends keyof T> = { [P in K]: T[P] }; | |
type MyOmit<T extends object, K extends keyof T> = { [P in Exclude<keyof T, K>]: T[P] }; | |
type MyPartial<T extends object> = { [P in keyof T]?: T[P] }; | |
type MyRequired<T extends object> = { [P in keyof T]-?: T[P] }; |
- SUS stands for Sliding Universal Score, not SeaUrchin Score anymore.
(Annotation: SUS files were originally the proprietary format ofSeaUrchin
, a tool to play custom chart)
- Plain Text data, consisting entirely of printable characters.
- File extension:
*.sus
- EOL: CRLF or LF
- Encode: Always UTF-8
- Lines beginning with
#
are meaningful as data; thus other lines are ignored as comments.