UNPKG

doi-utils

Version:

Set of utility functions to help with handling DOI(Digital Object Identifier)

8 lines (7 loc) 215 B
interface Resolver { test: (url: URL) => boolean; parse: (url: URL) => string | undefined; } export declare const STRICT_RESOLVERS: Resolver[]; export declare const DEFAULT_RESOLVERS: Resolver[]; export {};