🔧 Update dependencies

This commit is contained in:
Simon Schneegans
2022-10-09 06:09:18 +02:00
parent 8fb0b06275
commit e99491d01b
121 changed files with 6632 additions and 106 deletions

View File

@@ -1,4 +1,4 @@
interface CommandProperties {
export interface CommandProperties {
[key: string]: any;
}
/**
@@ -13,9 +13,3 @@ interface CommandProperties {
*/
export declare function issueCommand(command: string, properties: CommandProperties, message: any): void;
export declare function issue(name: string, message?: string): void;
/**
* Sanitizes an input into a string so it can be passed into issueCommand safely
* @param input input to sanitize into a string
*/
export declare function toCommandValue(input: any): string;
export {};