Massive/input.ts

10 lines
169 B
TypeScript
Raw Normal View History

2022-12-01 02:45:18 +00:00
import {Item} from './Select'
2023-01-01 02:20:56 +00:00
import Settings from './settings'
2022-12-01 02:45:18 +00:00
2022-09-25 04:32:49 +00:00
export default interface Input<T> {
2022-10-31 04:22:08 +00:00
name: string
key: keyof Settings
2022-10-31 04:22:08 +00:00
value?: T
2022-12-01 02:45:18 +00:00
items?: Item[]
2022-09-25 04:32:49 +00:00
}