From 475362a3922262c2a1acb32927c06c5ac2420b86 Mon Sep 17 00:00:00 2001 From: Josh Moore Date: Fri, 7 Jul 2023 00:31:15 -0600 Subject: [PATCH] feat: created types file defining `'ass'` module --- src2/types.d.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src2/types.d.ts diff --git a/src2/types.d.ts b/src2/types.d.ts new file mode 100644 index 0000000..e9c515d --- /dev/null +++ b/src2/types.d.ts @@ -0,0 +1,20 @@ +declare module 'ass' { + + /** + * Core Express server config. + * This is separate from the user configuration starting in 0.15.0 + */ + interface ServerConfiguration { + host: string, + port: number, + proxied: boolean + } + + interface UserConfiguration { + idType: string; + } +} + +//#region Dummy modules +declare module '@tinycreek/postcss-font-magician'; +//#endregion