/** * @copyright Sister Software * @license AGPL-3.0 * @author Teffen Ellis, et al. * * Headless browser utilities. */ /** * Common user agent strings. */ export const UserAgent = { /** * IPad OS 13.0 Safari. */ iPadSafari: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0 Safari/605.1.15", } as const /** * Common user agent strings. */ export type UserAgent = (typeof UserAgent)[keyof typeof UserAgent]