WIP: Format code with Google Typescript formatting guidelines

This commit is contained in:
2025-07-04 10:39:32 -04:00
parent e53d38e0ad
commit c834acdfec
12 changed files with 596 additions and 235 deletions

View File

@@ -1,23 +1,21 @@
import { ChatInputCommandInteraction, SlashCommandBuilder } from "discord.js";
import {ChatInputCommandInteraction, SlashCommandBuilder} from 'discord.js';
import { Settings } from "./common";
import {Settings} from './common';
import { Nag, CheckIn } from './common';
import {Nag, CheckIn} from './common';
const data = new SlashCommandBuilder()
.setName("checkin")
.setDescription("Check-in for your daily nag")
.addStringOption((option) =>
.setName('checkin')
.setDescription('Check-in for your daily nag')
.addStringOption(option =>
option
.setName("text")
.setDescription("Optional description of what you have achieved"),
.setName('text')
.setDescription('Optional description of what you have achieved'),
);
async function initialize(settings: Settings) {}
function execute(interaction: ChatInputCommandInteraction) {
}
function execute(interaction: ChatInputCommandInteraction) {}
export default function () {
return {