* Separate environment configs * wip * wip * test * plugins * test * test * .sequelizerc, unfortunately can't go through /utils/environment due to not supporting TS * docker-compose -> docker compose * fix: .local wipes .development * Add custom validation message for invalid SECRET_KEY (often confused)
29 lines
599 B
TypeScript
29 lines
599 B
TypeScript
declare module "sequelize-encrypted";
|
|
|
|
declare module "styled-components-breakpoint";
|
|
|
|
declare module "formidable/lib/file";
|
|
|
|
declare module "oy-vey";
|
|
|
|
declare module "email-providers" {
|
|
const list: string[];
|
|
export default list;
|
|
}
|
|
|
|
declare module "@joplin/turndown-plugin-gfm" {
|
|
import { Plugin } from "turndown";
|
|
|
|
export const strikethrough: Plugin;
|
|
export const tables: Plugin;
|
|
export const taskListItems: Plugin;
|
|
export const gfm: Plugin;
|
|
}
|
|
|
|
declare module "aws-sdk/lib/maintenance_mode_message" {
|
|
const maintenance: {
|
|
suppress: boolean;
|
|
};
|
|
export default maintenance;
|
|
}
|