Massive/input.ts
Brandon Presley f778426aba Run prettier
Something happened with the deno formatter,
I can't remember what! Hahahahahaahahaha
2023-08-12 15:23:02 +12:00

10 lines
177 B
TypeScript

import { Item } from "./Select";
import Settings from "./settings";
export default interface Input<T> {
name: string;
key: keyof Settings;
value?: T;
items?: Item[];
}