13 lines
212 B
TypeScript
13 lines
212 B
TypeScript
![]() |
import { utilityCmd } from "../types";
|
||
|
import { baseTypeHelpers as t } from "knub";
|
||
|
|
||
|
export const SearchCmd = utilityCmd(
|
||
|
["search", "s"],
|
||
|
{
|
||
|
query: t.string({ catchAll: true }),
|
||
|
|
||
|
},
|
||
|
{},
|
||
|
() => {}
|
||
|
);
|