14 lines
234 B
TypeScript
14 lines
234 B
TypeScript
import { utilityCmd } from "../types";
|
|
import { baseTypeHelpers as t } from "knub";
|
|
|
|
export const SearchCmd = utilityCmd({
|
|
trigger: ["search", "s"],
|
|
|
|
signature: {
|
|
query: t.string({ catchAll: true }),
|
|
},
|
|
|
|
run() {
|
|
|
|
},
|
|
});
|