Massive/input.ts

10 lines
177 B
TypeScript
Raw Permalink Normal View History

import { Item } from "./Select";
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> {
name: string;
key: keyof Settings;
value?: T;
items?: Item[];
2022-09-25 04:32:49 +00:00
}