Convert a DOM DocumentType into a string, e.g. "<!DOCTYPE html>"

index.d.ts 105 B

123
  1. declare module 'doctype-to-string' {
  2. export default function(doctype: DocumentType | null): string
  3. }