This repository has been archived on 2026-02-16. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
launcher/src/types/SettingProps.ts
Lncvrt ab26a4f5e9 Look at description for changelog
- Wine support
- Loading script
- Format code
- Hide downloads button on sidebar when not downloading
- Add installs list
- A lot of improvements & more
2025-07-22 23:12:33 -07:00

7 lines
120 B
TypeScript

export type SettingProps = {
label: string
value: boolean
onChange: (val: boolean) => void
className?: string
}