import { MicrolinkBaseClass } from "../../helpers/microlink"; export default class DeviantArt extends MicrolinkBaseClass { name = "deviantart"; icon = ``; color = "#00d159"; exampleURL = "https://www.deviantart.com/artbycatherineradley/art/Despair-820869682"; validator = (input: string) => /(https?:\/\/(.+?\.)?(deviantart|fav)\.(com|me)(\/[A-Za-z0-9\-\._~:\/\?#\[\]@!$&'\(\)\*\+,;\=]*)?)/.test( input ); }