Skip to content

FileContainer

type FileContainer = {
file: (fileName: string, content: string) => void;
};

A file container class. It only needs to include a method for accepting files which the exporter will use to emit the resulting xml files.

PropertyType
file(fileName: string, content: string) => void