UNPKG

npf2html

Version:

Converts Tumblr's Neue Post Format to plain HTML

10 lines (9 loc) 224 B
/** Information about a particular blog on Tumblr. */ export interface BlogInfo { /** The blog's UUID. */ uuid: string; /** The blog's username. */ name: string; /** The blog's URL. */ url: string; }