This codemod renames Deno typscript interface names in your codebase to their new names.
Before
function handleRecord(record: Deno.MXRecord) {// Handle the MX record}
After
function handleRecord(record: Deno.MxRecord) {// Handle the MX record}
The following Deno types are replaced:
Deno.CAARecord→Deno.CaaRecordDeno.MXRecord→Deno.MxRecordDeno.NAPTRRecord→Deno.NaptrRecordDeno.SOARecord→Deno.SoaRecordDeno.SRVRecord→Deno.SrvRecordDeno.File→Deno.FsFileDeno.Sever→Deno.HttpServer
Build custom codemods
Use AI-powered codemod studio and automate undifferentiated tasks for yourself, colleagues or the community