facilmap/server/src/deps.d.ts

14 wiersze
277 B
TypeScript

interface JsonFormatConfig {
type: "space" | "tab",
size: number
}
declare module "json-format" {
export default function jsonFormat(obj: any, config?: JsonFormatConfig | null): string;
}
declare module "compressjs" {
const compressjs: any;
export default compressjs;
}