interface Option { strict?: boolean; } interface VerifyOption { check_digit?: boolean; } /** * Verify ISBN string format and check digit */ export default class { #private; /** * @param isbn - ISBN value to check * @param options - Characteristics related to the handling of ISBN values */ constructor(isbn: string, options?: Readonly