export function writeWithPreamble( filePath: string, fileContent: string, ) { return Deno.writeTextFile( filePath, "# THIS FILE IS AUTOGENERATED. DO NOT EDIT IT BY HAND.\n" + fileContent, ); }