UNPKG

@oslokommune/punkt-elements

Version:

Komponentbiblioteket til Punkt, et designsystem laget av Oslo Origo

14 lines (13 loc) 400 B
import { BaseTestConfig } from '../../tests/test-framework'; export interface AlertTestConfig extends BaseTestConfig { skin?: string; compact?: boolean; title?: string; date?: string; closeAlert?: boolean; ariaLive?: string; } export declare const createAlertTest: (config?: AlertTestConfig) => Promise<{ container: HTMLElement; alert: import('./alert').PktAlert; }>;