import * as axe from "axe-core"; export interface Options extends axe.RunOptions { includedImpacts?: string[]; } export interface Component { selector: string; html: string; name: string; } export type DeepPartial = { [P in keyof T]?: DeepPartial; };