import type { ISaveOptions } from '../beatmap/saver/types.js'; import type { InferBeatmapVersion } from '../beatmap/schema/shared/types/infer.js'; import type { BeatmapFileType } from '../beatmap/schema/shared/types/schema.js'; import type { IBaseOptions } from '../types/_bsmap_io.js'; export interface IWriteOptions, TWrapper extends Record = Record, TSerial extends Record = Record> extends IBaseOptions { filename?: string; /** * Prettify format JSON. * * @default 0 */ format?: number; save?: ISaveOptions; } //# sourceMappingURL=types.d.ts.map